}
@Override public void visitTry(JCTry node) {
Try t = new Try();
t.rawBody(toTree(node.getBlock()));
t.rawFinally(toTree(node.getFinallyBlock()));
fillList(node.getCatches(), t.rawCatches());
set(node, t);
}
@Override public void visitCatch(JCCatch node) {