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

10 lines
217 B
JavaScript

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