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

Method visitParameter

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

Visits a parameter of this method. @param name parameter name or null if none is provided. @param access the parameter's access flags, only ACC_FINAL , ACC_SYNTHETIC or/and ACC_MANDATED are allowed (see Opcodes).

(final String name, final int access)

Source from the content-addressed store, hash-verified

102 * or/and <tt>ACC_MANDATED</tt> are allowed (see {@link Opcodes}).
103 */
104 public void visitParameter(final String name, final int access) {
105 if (api < Opcodes.ASM5) {
106 throw new UnsupportedOperationException(REQUIRES_ASM5);
107 }
108 if (mv != null) {
109 mv.visitParameter(name, access);
110 }
111 }
112
113 /**
114 * Visits the default value of this annotation interface method.

Callers 1

readMethodMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected