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

Method addConstantString

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

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

(final String value)

Source from the content-addressed store, hash-verified

615 * @return a new or already existing Symbol with the given value.
616 */
617 Symbol addConstantString(final String value) {
618 return addConstantUtf8Reference(Symbol.CONSTANT_STRING_TAG, value);
619 }
620
621 /**
622 * Adds a CONSTANT_Integer_info to the constant pool of this symbol table. Does nothing if the

Callers 1

addConstantMethod · 0.95

Calls 1

Tested by

no test coverage detected