Visits a local variable instruction. A local variable instruction is an instruction that loads or stores the value of a local variable. @param opcode the opcode of the local variable instruction to be visited. This opcode is either ILOAD, LLOAD, FLOAD, DLOAD, ALOAD, ISTORE, LSTORE, FSTORE, DSTO
(final int opcode, final int var)
| 349 | * variable. |
| 350 | */ |
| 351 | public void visitVarInsn(final int opcode, final int var) { |
| 352 | if (mv != null) { |
| 353 | mv.visitVarInsn(opcode, var); |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * Visits a type instruction. A type instruction is an instruction that takes the internal name of |