Gabriel Hurley 6f990c9ce4 Readding bin dir which was mistakenly deleted.
Change-Id: Ia8989da47a55f7c932115a976b6d799714b8dc56
2012-10-12 15:35:19 -07:00

14 lines
255 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('../tree'));