BlockStmt tryBlock = cloneNodes(_n.getTryBlock(), _arg);
List<CatchClause> catchs = visit(_n.getCatchs(), _arg);
BlockStmt finallyBlock = cloneNodes(_n.getFinallyBlock(), _arg);
Comment comment = cloneNodes(_n.getComment(), _arg);
TryStmt r = new TryStmt(
_n.getBeginLine(), _n.getBeginColumn(), _n.getEndLine(), _n.getEndColumn(),
resources, tryBlock, catchs, finallyBlock
);
r.setComment(comment);
return r;
}