Example #1
0
 /**
  * Visits an IINC instruction.
  *
  * @param var index of the local variable to be incremented.
  * @param increment amount to increment the local variable by.
  */
 public void visitIincInsn(int var, int increment) {
   if (mv != null) {
     mv.visitIincInsn(var, increment);
   }
 }