Example #1
0
 @Override
 public void visitJumpInsn(final int opcode, final Label label) {
     checkStartCode();
     checkEndCode();
     checkOpcode(opcode, 6);
     checkLabel(label, false, "label");
     checkNonDebugLabel(label);
     super.visitJumpInsn(opcode, label);
     usedLabels.add(label);
     ++insnCount;
 }