@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);
 }