public void Visit(EvalExp eval) { eval.Exp.Accept(this); }
public void Visit(EvalExp eval) { Indent(); eval.Exp.Accept(this); _sb.Append("\r\n"); }
public void Visit(EvalExp eval) { // Nothing to do here... }