예제 #1
0
파일: If.cs 프로젝트: everythingajw/Giosue
 public If(AST.Expression condition, Statements.Statement thenBranch, Statements.Statement ElseBranch)
 {
     this.Condition  = condition;
     this.ThenBranch = thenBranch;
     this.ElseBranch = ElseBranch;
 }
예제 #2
0
 public While(AST.Expression condition, Statements.Statement body)
 {
     this.Condition = condition;
     this.Body      = body;
 }