Ejemplo n.º 1
0
 // MethodDeclList ---
 public IrFuncList visit(AstMethodDeclList n)
 {
     IrFuncList funcs = new IrFuncList();
     for (int i = 0; i < n.Count(); i++)
         funcs.Add(n[i].accept(this));
     return funcs;
 }
Ejemplo n.º 2
0
 public void visit(AstMethodDeclList n)
 {
     for (int i = 0; i < n.Count(); i++)
         n[i].accept(this);
 }