Esempio n. 1
0
 private void Resolve(Expr expr)
 {
     expr.Accept(this);
 }
Esempio n. 2
0
 public String Print(Expr expr)
 {
     return(expr.Accept(this));
 }