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

Method addConstantDouble

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

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

(final double value)

Source from the content-addressed store, hash-verified

692 * @return a new or already existing Symbol with the given value.
693 */
694 Symbol addConstantDouble(final double value) {
695 return addConstantLong(Symbol.CONSTANT_DOUBLE_TAG, Double.doubleToRawLongBits(value));
696 }
697
698 /**
699 * Adds a CONSTANT_Long_info or CONSTANT_Double_info to the constant pool of this symbol table.

Callers 2

addConstantMethod · 0.95
visitMethod · 0.80

Calls 1

addConstantLongMethod · 0.95

Tested by

no test coverage detected