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

Method visitVarInsn

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

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)

Source from the content-addressed store, hash-verified

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

Callers 1

emitStaticsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected