Example #1
0
 public void visit(DoStmt n, Object arg) {
   n.getBody().accept(this, arg);
   n.getCondition().accept(this, arg);
 }
 @Override
 public void visit(final DoStmt n, final A arg) {
   visitComment(n.getComment(), arg);
   n.getBody().accept(this, arg);
   n.getCondition().accept(this, arg);
 }