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

Method addConstantPackage

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

Adds a CONSTANT_Package_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param packageName the internal name of a package. @return a new or already existing Symbol with the given value.

(final String packageName)

Source from the content-addressed store, hash-verified

993 * @return a new or already existing Symbol with the given value.
994 */
995 Symbol addConstantPackage(final String packageName) {
996 return addConstantUtf8Reference(Symbol.CONSTANT_PACKAGE_TAG, packageName);
997 }
998
999 /**
1000 * Adds a CONSTANT_Class_info, CONSTANT_String_info, CONSTANT_MethodType_info,

Callers 4

newPackageMethod · 0.80
visitPackageMethod · 0.80
visitExportMethod · 0.80
visitOpenMethod · 0.80

Calls 1

Tested by

no test coverage detected