Example #1
0
 public void visit(TryStmt n, Object arg) {
   n.getTryBlock().accept(this, arg);
   if (n.getCatchs() != null) {
     for (CatchClause c : n.getCatchs()) {
       c.accept(this, arg);
     }
   }
   if (n.getFinallyBlock() != null) {
     n.getFinallyBlock().accept(this, arg);
   }
 }
Example #2
0
 public void visit(CatchClause n, Object arg) {
   n.getExcept().accept(this, arg);
   n.getCatchBlock().accept(this, arg);
 }