public ForStatement(ForVariable itemVar, Expression condition, Expression incrementor, Block body) : base() { this.itemVar = itemVar; this.condition = condition; this.incrementor = incrementor; this.body = body; }
public ForVariableReference(ForVariable decl) : base() { this.decl = decl; decl.references.push(this); }