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

Method visitRequire

src/jvm/clojure/asm/ModuleVisitor.java:105–109  ·  view source on GitHub ↗

Visits a dependence of the current module. @param module the fully qualified name (using dots) of the dependence. @param access the access flag of the dependence among ACC_TRANSITIVE, ACC_STATIC_PHASE, ACC_SYNTHETIC and ACC_MANDATED. @param version the module ver

(final String module, final int access, final String version)

Source from the content-addressed store, hash-verified

103 * @param version the module version at compile time, or <tt>null</tt>.
104 */
105 public void visitRequire(final String module, final int access, final String version) {
106 if (mv != null) {
107 mv.visitRequire(module, access, version);
108 }
109 }
110
111 /**
112 * Visit an exported package of the current module.

Callers 1

readModuleMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected