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