Beispiel #1
0
 public string Print(Expr expr) => expr.Accept(this);
Beispiel #2
0
 private object Evaluate(Expr exp)
 {
     return(exp.Accept(this));
 }
Beispiel #3
0
 private void Resolve(Expr expr)
 {
     expr.Accept(this);
 }