carto/lib/mess/tree/anonymous.js
2011-01-05 14:23:28 -05:00

14 lines
257 B
JavaScript

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