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

Method visitOpen

src/jvm/clojure/asm/ModuleWriter.java:144–156  ·  view source on GitHub ↗
(final String packaze, final int access, final String... modules)

Source from the content-addressed store, hash-verified

142 }
143
144 @Override
145 public void visitOpen(final String packaze, final int access, final String... modules) {
146 opens.putShort(symbolTable.addConstantPackage(packaze).index).putShort(access);
147 if (modules == null) {
148 opens.putShort(0);
149 } else {
150 opens.putShort(modules.length);
151 for (String module : modules) {
152 opens.putShort(symbolTable.addConstantModule(module).index);
153 }
154 }
155 opensCount++;
156 }
157
158 @Override
159 public void visitUse(final String service) {

Callers

nothing calls this directly

Calls 3

putShortMethod · 0.80
addConstantPackageMethod · 0.80
addConstantModuleMethod · 0.80

Tested by

no test coverage detected