309310311312313314315316317318319
Catch catchBlock = nearlyTryBlock.getCatchEntity(); Finally finallyBlock = nearlyTryBlock.getFinallyBlock(); while(catchBlock != null){ catchBlock.prepare(); catchBlock = catchBlock.getNextCatch(); } if(finallyBlock != null){ try{