@Override
 public void visit(final ForeachStmt n, final A arg) {
   visitComment(n.getComment(), arg);
   n.getVariable().accept(this, arg);
   n.getIterable().accept(this, arg);
   n.getBody().accept(this, arg);
 }
Ejemplo n.º 2
0
 public void visit(ForeachStmt n, Object arg) {
   n.getVariable().accept(this, arg);
   n.getIterable().accept(this, arg);
   n.getBody().accept(this, arg);
 }