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

Method addConstantLong

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

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

(final long value)

Source from the content-addressed store, hash-verified

681 * @return a new or already existing Symbol with the given value.
682 */
683 Symbol addConstantLong(final long value) {
684 return addConstantLong(Symbol.CONSTANT_LONG_TAG, value);
685 }
686
687 /**
688 * Adds a CONSTANT_Double_info to the constant pool of this symbol table. Does nothing if the

Callers 4

SymbolTableMethod · 0.95
addConstantMethod · 0.95
addConstantDoubleMethod · 0.95
visitMethod · 0.80

Calls 6

hashMethod · 0.95
getMethod · 0.95
putMethod · 0.95
addMethod · 0.95
putLongMethod · 0.80
putByteMethod · 0.80

Tested by

no test coverage detected