Files
less.js/lib/less/tree/keyword.js
2011-11-12 13:13:36 +01:00

10 lines
215 B
JavaScript

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