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

Method visitExport

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

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

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

Source from the content-addressed store, hash-verified

118 * classes of the exported package, or <tt>null</tt>.
119 */
120 public void visitExport(final String packaze, final int access, final String... modules) {
121 if (mv != null) {
122 mv.visitExport(packaze, access, modules);
123 }
124 }
125
126 /**
127 * Visit an open package of the current module.

Callers 1

readModuleMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected