carto/lib/less/tree/anonymous.js
2010-06-19 01:51:26 -04:00

14 lines
259 B
JavaScript

(function (tree) {
tree.Anonymous = function (string) {
this.value = string.content || string;
};
tree.Anonymous.prototype = {
toCSS: function () {
return this.value;
},
eval: function () { return this }
};
})(require('less/tree'));