public Assign(LValue lval, Statement s)
 {
     lval.IsLeftHandSide = true;
     LValue = lval;
     Statement = s;
 }
 public Block(Statement body)
 {
     Body = body;
 }
Beispiel #3
0
 public Block(Statement body)
 {
     Body = body;
 }