예제 #1
0
 private void Resolve(Stmt stmt)
 {
     stmt.Accept(this);
 }
예제 #2
0
 private void Execute(Stmt stmt)
 {
     stmt.Accept(this);
 }
예제 #3
0
 private void Execute(Stmt statement)
 {
     statement.Accept(this);
 }
예제 #4
0
파일: AST_Printer.cs 프로젝트: sirgru/CsLox
 public String Print(Stmt stmt)
 {
     return(stmt.Accept(this));
 }