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

Method visitInsn

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

Visits a zero operand instruction. @param opcode the opcode of the instruction to be visited. This opcode is either NOP, ACONST_NULL, ICONST_M1, ICONST_0, ICONST_1, ICONST_2, ICONST_3, ICONST_4, ICONST_5, LCONST_0, LCONST_1, FCONST_0, FCONST_1, FCONST_2, DCONST_0, DCONST_1, IALOAD, LALOAD,

(final int opcode)

Source from the content-addressed store, hash-verified

314 * DRETURN, ARETURN, RETURN, ARRAYLENGTH, ATHROW, MONITORENTER, or MONITOREXIT.
315 */
316 public void visitInsn(final int opcode) {
317 if (mv != null) {
318 mv.visitInsn(opcode);
319 }
320 }
321
322 /**
323 * Visits an instruction with a single int operand.

Callers 1

emitStaticsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected