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

Method visitSource

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

Visits the source of the class. @param source the name of the source file from which the class was compiled. May be null . @param debug additional debug information to compute the correspondence between source and compiled elements of the class. May be null .

(final String source, final String debug)

Source from the content-addressed store, hash-verified

115 * compiled elements of the class. May be <tt>null</tt>.
116 */
117 public void visitSource(final String source, final String debug) {
118 if (cv != null) {
119 cv.visitSource(source, debug);
120 }
121 }
122
123 /**
124 * Visit the module corresponding to the class.

Callers 1

compileMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected