Example #1
0
 private boolean inExceptionHandlerBlocks(BlockNode loopEnd) {
   if (mth.getExceptionHandlersCount() == 0) {
     return false;
   }
   for (ExceptionHandler eh : mth.getExceptionHandlers()) {
     if (eh.getBlocks().contains(loopEnd)) {
       return true;
     }
   }
   return false;
 }