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