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

Method addConstantModule

src/jvm/clojure/asm/SymbolTable.java:984–986  ·  view source on GitHub ↗

Adds a CONSTANT_Module_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param moduleName a fully qualified name (using dots) of a module. @return a new or already existing Symbol with the given value.

(final String moduleName)

Source from the content-addressed store, hash-verified

982 * @return a new or already existing Symbol with the given value.
983 */
984 Symbol addConstantModule(final String moduleName) {
985 return addConstantUtf8Reference(Symbol.CONSTANT_MODULE_TAG, moduleName);
986 }
987
988 /**
989 * Adds a CONSTANT_Package_info to the constant pool of this symbol table. Does nothing if the

Callers 5

visitModuleMethod · 0.80
newModuleMethod · 0.80
visitRequireMethod · 0.80
visitExportMethod · 0.80
visitOpenMethod · 0.80

Calls 1

Tested by

no test coverage detected