public ForeachStatement(ForeachVariable itemVar, Expression items, Block body) : base() { this.itemVar = itemVar; this.items = items; this.body = body; }
public ForeachVariableReference(ForeachVariable decl) : base() { this.decl = decl; decl.references.push(this); }