1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

waypoint -- it's beginning to parser

This commit is contained in:
Jeremy Ashkenas 2010-02-07 15:15:36 -05:00
parent 7ec0a8d653
commit 56499984ca
8 changed files with 839 additions and 926 deletions

View file

@ -5,6 +5,9 @@
__a = this.values = arguments;
return Node === this.constructor ? this : __a;
};
exports.Node.wrap = function wrap(values) {
return this.values = values;
};
exports.Expressions = exports.Node;
exports.LiteralNode = exports.Node;
exports.ReturnNode = exports.Node;