JSTryStatement tryFinally0 = body.tryFinally();
tryFinally0.getBody().expression(y.preIncr());
tryFinally0.getFinally()._return(codeModel._boolean(true));
JSTryStatement tryCatchFinally = body.tryCatchFinally("e");
tryCatchFinally.getBody().expression(y.preIncr());
tryCatchFinally.getCatch()._throw(tryCatchFinally.getException());
tryCatchFinally.getFinally()._return(codeModel._boolean(true));
}