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