/* 216 */ incMaxLocals(1);
/* 217 */ while (catchList != null)
/* */ {
/* 219 */ Pair p = (Pair)catchList.head();
/* 220 */ catchList = catchList.tail();
/* 221 */ Declarator decl = (Declarator)p.getLeft();
/* 222 */ Stmnt block = (Stmnt)p.getRight();
/* */
/* 224 */ decl.setLocalVar(var);
/* */
/* 226 */ CtClass type = this.resolver.lookupClassByJvmName(decl.getClassName());
/* 227 */ decl.setClassName(MemberResolver.javaToJvmName(type.getName()));
/* 228 */ bc.addExceptionHandler(start, end, bc.currentPc(), type);
/* 229 */ bc.growStack(1);
/* 230 */ bc.addAstore(var);
/* 231 */ this.hasReturned = false;
/* 232 */ if (block != null) {