Example #1
0
 public If(AST.Expression condition, Statements.Statement thenBranch, Statements.Statement ElseBranch)
 {
     this.Condition  = condition;
     this.ThenBranch = thenBranch;
     this.ElseBranch = ElseBranch;
 }
Example #2
0
 public While(AST.Expression condition, Statements.Statement body)
 {
     this.Condition = condition;
     this.Body      = body;
 }