MCPcopy Index your code
hub / github.com/clojure/clojure / visitTypeInsn

Method visitTypeInsn

src/jvm/clojure/asm/MethodVisitor.java:366–370  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 1

emitStaticsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected