예제 #1
0
 @Override
 public void visitIntInsn(int arg0, int arg1) {
   if (removingMethodBody()) {
     return;
   }
   instrumentationStatsRecord.addInstruction();
   super.visitIntInsn(arg0, arg1);
 }
예제 #2
0
 @Override
 public void visitIntInsn(final int opcode, final int operand) {
   machine.gotSomethingWrong();
   super.visitIntInsn(opcode, operand);
 }