@Override public void visit(final ForStmt n, final A arg) { visitComment(n.getComment(), arg); if (n.getInit() != null) { for (final Expression e : n.getInit()) { e.accept(this, arg); } } if (n.getCompare() != null) { n.getCompare().accept(this, arg); } if (n.getUpdate() != null) { for (final Expression e : n.getUpdate()) { e.accept(this, arg); } } n.getBody().accept(this, arg); }
@Override public Boolean visit(final ForStmt n1, final Node arg) { final ForStmt n2 = (ForStmt) arg; if (!nodesEquals(n1.getInit(), n2.getInit())) { return Boolean.FALSE; } if (!nodeEquals(n1.getCompare(), n2.getCompare())) { return Boolean.FALSE; } if (!nodesEquals(n1.getUpdate(), n2.getUpdate())) { return Boolean.FALSE; } if (!nodeEquals(n1.getBody(), n2.getBody())) { return Boolean.FALSE; } return Boolean.TRUE; }