carto/lib/less/tree/keyword.js

10 lines
217 B
JavaScript
Raw Normal View History

(function (tree) {
2010-02-24 02:39:05 +08:00
2010-06-19 13:51:26 +08:00
tree.Keyword = function (value) { this.value = value };
2010-03-04 00:59:08 +08:00
tree.Keyword.prototype = {
eval: function () { return this },
toCSS: function () { return this.value }
2010-02-24 02:39:05 +08:00
};
})(require('less/tree'));