public Node visit(CatchClause _n, Object _arg) {
MultiTypeParameter except = cloneNodes(_n.getExcept(), _arg);
BlockStmt catchBlock = cloneNodes(_n.getCatchBlock(), _arg);
Comment comment = cloneNodes(_n.getComment(), _arg);
CatchClause r = new CatchClause(
_n.getBeginLine(), _n.getBeginColumn(), _n.getEndLine(), _n.getEndColumn(),
except.getModifiers(), except.getAnnotations(), except.getTypes(), except.getId(), catchBlock
);
r.setComment(comment);
return r;
}