6263646566676869707172
for (int i = start; i < size(); i++) { Instruction instruction = instructionAt(i); if (instruction == null) return; //we're done try { instruction.handleInstruction(insnHandler); } catch (Exception e) { } } }