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

Method visitMethodInsn

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

Visits a method instruction. A method instruction is an instruction that invokes a method. @param opcode the opcode of the type instruction to be visited. This opcode is either INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or INVOKEINTERFACE. @param owner the internal name of the method's owner cl

(
      final int opcode, final String owner, final String name, final String descriptor)

Source from the content-addressed store, hash-verified

398 * @deprecated
399 */
400 @Deprecated
401 public void visitMethodInsn(
402 final int opcode, final String owner, final String name, final String descriptor) {
403 if (api >= Opcodes.ASM5) {
404 boolean isInterface = opcode == Opcodes.INVOKEINTERFACE;
405 visitMethodInsn(opcode, owner, name, descriptor, isInterface);
406 return;
407 }
408 if (mv != null) {
409 mv.visitMethodInsn(opcode, owner, name, descriptor);
410 }
411 }
412
413 /**
414 * Visits a method instruction. A method instruction is an instruction that invokes a method.

Callers 1

emitStaticsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected