public void visitCatch(Catch ca) {
   visitControlStructure(ca);
   visit(ca.getDeclaration());
   visit(ca.getBody());
 }