mirror of
https://github.com/less/less.js.git
synced 2026-01-24 06:38:05 -05:00
30 lines
688 B
JavaScript
30 lines
688 B
JavaScript
module.exports = function (tree) {
|
|
|
|
var Assignment = function (key, val) {
|
|
this.key = key;
|
|
this.value = val;
|
|
};
|
|
Assignment.prototype = {
|
|
type: "Assignment",
|
|
accept: function (visitor) {
|
|
this.value = visitor.visit(this.value);
|
|
},
|
|
eval: function (env) {
|
|
if (this.value.eval) {
|
|
return new(Assignment)(this.key, this.value.eval(env));
|
|
}
|
|
return this;
|
|
},
|
|
genCSS: function (env, output) {
|
|
output.add(this.key + '=');
|
|
if (this.value.genCSS) {
|
|
this.value.genCSS(env, output);
|
|
} else {
|
|
output.add(this.value);
|
|
}
|
|
},
|
|
toCSS: tree.toCSS
|
|
};
|
|
return Assignment;
|
|
};
|