示例#1
0
文件: Stmt.cs 项目: richsoft/CsLox
 public While(Expr condition, Stmt body)
 {
     this.Condition = condition;
     this.Body      = body;
 }
示例#2
0
文件: Stmt.cs 项目: richsoft/CsLox
 public If(Expr condtion, Stmt then_branch, Stmt else_branch)
 {
     this.Condition  = condtion;
     this.ThenBranch = then_branch;
     this.ElseBranch = else_branch;
 }