feat(parser): adds support for variable bindings

This commit is contained in:
vsavkin
2014-11-26 09:44:31 -08:00
parent a3d9f0fead
commit 1863d50978
7 changed files with 155 additions and 19 deletions

View File

@ -30,6 +30,7 @@ export class ProtoRecord {
context:any;
funcOrValue:any;
arity:int;
name:string;
dest;
next:ProtoRecord;
@ -39,12 +40,14 @@ export class ProtoRecord {
mode:int,
funcOrValue,
arity:int,
name:string,
dest) {
this.recordRange = recordRange;
this._mode = mode;
this.funcOrValue = funcOrValue;
this.arity = arity;
this.name = name;
this.dest = dest;
this.next = null;