@Override public Boolean visit(final CatchClause n1, final Node arg) { final CatchClause n2 = (CatchClause) arg; if (!nodeEquals(n1.getParam(), n2.getParam())) { return Boolean.FALSE; } if (!nodeEquals(n1.getCatchBlock(), n2.getCatchBlock())) { return Boolean.FALSE; } return Boolean.TRUE; }
@Override public void visit(final TryStmt n, final A arg) { visitComment(n.getComment(), arg); if (n.getResources() != null) { for (final VariableDeclarationExpr v : n.getResources()) { v.accept(this, arg); } } n.getTryBlock().accept(this, arg); if (n.getCatchs() != null) { for (final CatchClause c : n.getCatchs()) { c.accept(this, arg); } } if (n.getFinallyBlock() != null) { n.getFinallyBlock().accept(this, arg); } }
@Override public void visit(final CatchClause n, final A arg) { visitComment(n.getComment(), arg); n.getParam().accept(this, arg); n.getBody().accept(this, arg); }