final Instruction instruction = new JumpInstruction(instructionList.size(), OPCODES_ARRAY[opcode], currentLineNumber, label);
updateCurrentState(instruction);
}
public void visitLabel(final org.objectweb.asm.Label asmLabel) {
final Label label = declareLabel(asmLabel);
label.declare(instructionList.size());
final String handledType = label.getHandledType();
if (handledType != null) {
currentOperandStack = new StaticOperandStack(handledType, currentOperandStack, null);
}
}