Visits a type instruction. A type instruction is an instruction that takes the internal name of a class as parameter. @param opcode the opcode of the type instruction to be visited. This opcode is either NEW, ANEWARRAY, CHECKCAST or INSTANCEOF. @param type the operand of the instruction to be v
(final int opcode, final String type)
| 364 | * name of an object or array class (see {@link Type#getInternalName()}). |
| 365 | */ |
| 366 | public void visitTypeInsn(final int opcode, final String type) { |
| 367 | if (mv != null) { |
| 368 | mv.visitTypeInsn(opcode, type); |
| 369 | } |
| 370 | } |
| 371 | |
| 372 | /** |
| 373 | * Visits a field instruction. A field instruction is an instruction that loads or stores the |