2010-06-16 06:44:59 +08:00
|
|
|
(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
|
|
|
};
|
2010-06-16 06:44:59 +08:00
|
|
|
|
|
|
|
})(require('less/tree'));
|