Ejemplo n.º 1
0
 internal While(Expr condition, Stmt body)
 {
     this.condition = condition;
     this.body      = body;
 }
Ejemplo n.º 2
0
 internal If(Expr condition, Stmt thenBranch, Stmt elseBranch)
 {
     this.condition  = condition;
     this.thenBranch = thenBranch;
     this.elseBranch = elseBranch;
 }