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

Method visit

src/jvm/clojure/asm/ClassVisitor.java:97–107  ·  view source on GitHub ↗

Visits the header of the class. @param version the class version. The minor version is stored in the 16 most significant bits, and the major version in the 16 least significant bits. @param access the class's access flags (see Opcodes). This parameter also indicates if the class is

(
      final int version,
      final int access,
      final String name,
      final String signature,
      final String superName,
      final String[] interfaces)

Source from the content-addressed store, hash-verified

95 * Type#getInternalName()}). May be <tt>null</tt>.
96 */
97 public void visit(
98 final int version,
99 final int access,
100 final String name,
101 final String signature,
102 final String superName,
103 final String[] interfaces) {
104 if (cv != null) {
105 cv.visit(version, access, name, signature, superName, interfaces);
106 }
107 }
108
109 /**
110 * Visits the source of the class.

Callers 3

compileMethod · 0.95
compileMethod · 0.95
compileStubMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected