示例#1
0
 public void Visit(AbsFunCall acceptor)
 {
     Dump(string.Format("AbsFunCall {0}", acceptor.name));
     indent++;
     acceptor.args.Accept(this);
     indent--;
 }
示例#2
0
 public void Visit(AbsFunCall funCall)
 {
     funCall.args.Accept(this);
 }