Example #1
0
File: Stmt.cs Project: gajcowan/cox
 public While(Expr condition, Stmt body)
 {
     Condition = condition;
     Body      = body;
 }
Example #2
0
File: Stmt.cs Project: gajcowan/cox
 public If(Expr condition, Stmt thenBranch, Stmt elseBranch)
 {
     Condition  = condition;
     Thenbranch = thenBranch;
     Elsebranch = elseBranch;
 }