Exemplo n.º 1
0
 private void Resolve(Stmt stmt)
 {
     stmt.Accept(this);
 }
Exemplo n.º 2
0
 private void Execute(Stmt stmt)
 {
     stmt.Accept(this);
 }
Exemplo n.º 3
0
 private void Execute(Stmt statement)
 {
     statement.Accept(this);
 }
Exemplo n.º 4
0
 public String Print(Stmt stmt)
 {
     return(stmt.Accept(this));
 }