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

Method visitOpen

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

Visit an open package of the current module. @param packaze the internal name of the opened package. @param access the access flag of the opened package, valid values are among ACC_SYNTHETIC and ACC_MANDATED. @param modules the fully qualified names (using dots) of the modules t

(final String packaze, final int access, final String... modules)

Source from the content-addressed store, hash-verified

133 * reflection to the classes of the open package, or <tt>null</tt>.
134 */
135 public void visitOpen(final String packaze, final int access, final String... modules) {
136 if (mv != null) {
137 mv.visitOpen(packaze, access, modules);
138 }
139 }
140
141 /**
142 * Visit a service used by the current module. The name must be the internal name of an interface

Callers 1

readModuleMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected