carto/lib/less/tree/rule.js

55 lines
1.4 KiB
JavaScript
Raw Normal View History

if (typeof(require) !== 'undefined') { var tree = require('less/tree') }
2010-02-24 02:39:05 +08:00
tree.Rule = function Rule(name, value, index) {
2010-02-24 02:39:05 +08:00
this.name = name;
this.value = (value instanceof tree.Value) ? value : new(tree.Value)([value]);
this.index = index;
2010-02-24 02:39:05 +08:00
if (name.charAt(0) === '@') {
this.variable = true;
} else { this.variable = false }
};
tree.Rule.prototype.toCSS = function () {
2010-02-26 06:56:21 +08:00
if (this.variable) { return "" }
else {
return this.name + ": " + this.value.toCSS() + ";";
2010-02-26 06:56:21 +08:00
}
2010-02-24 02:39:05 +08:00
};
tree.Rule.prototype.eval = function (context) {
return new(tree.Rule)(this.name, this.value.eval(context));
};
tree.Value = function Value(value) {
2010-02-24 02:39:05 +08:00
this.value = value;
this.is = 'value';
};
2010-03-08 12:38:10 +08:00
tree.Value.prototype = {
eval: function (env) {
if (this.value.length === 1) {
return this.value[0].eval(env);
2010-03-08 12:38:10 +08:00
} else {
2010-05-07 00:46:36 +08:00
return new(tree.Value)(this.value.map(function (v) {
return v.eval(env);
}));
2010-03-08 12:38:10 +08:00
}
},
toCSS: function () {
2010-03-08 12:38:10 +08:00
return this.value.map(function (e) {
return e.toCSS();
2010-03-08 12:38:10 +08:00
}).join(', ');
2010-02-24 02:39:05 +08:00
}
};
tree.Shorthand = function Shorthand(a, b) {
this.a = a;
this.b = b;
};
tree.Shorthand.prototype = {
toCSS: function (env) {
return this.a.toCSS(env) + "/" + this.b.toCSS(env);
},
eval: function () { return this }
};