Пример #1
0
 internal While(Expr condition, Stmt body)
 {
     this.Condition = condition;
     this.Body      = body;
 }
Пример #2
0
 internal If(Expr condition, Stmt thenBranch, Stmt elseBranch)
 {
     this.Condition  = condition;
     this.ThenBranch = thenBranch;
     this.ElseBranch = elseBranch;
 }