예제 #1
0
 void resolve(Stmt statement)
 {
     try
     {
         statement.accept(this);
     }
     catch (LoxRuntimeException error)
     {
         Program.runtimeError(error);
     }
 }
예제 #2
0
 void execute(Stmt s)
 {
     s.accept(this);
 }