Adding field

refilter
Tom MacWright 13 years ago
parent 8b5ea80e5d
commit c0526392dc

@ -0,0 +1,13 @@
(function(tree) {
tree.Field = function Keyword(value) {
this.value = value;
this.is = 'field';
};
tree.Field.prototype = {
eval: function() { return this },
toString: function() { return '[' + this.value + ']' }
};
})(require('../tree'));
Loading…
Cancel
Save