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

Method addConstantInteger

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

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

(final int value)

Source from the content-addressed store, hash-verified

626 * @return a new or already existing Symbol with the given value.
627 */
628 Symbol addConstantInteger(final int value) {
629 return addConstantInteger(Symbol.CONSTANT_INTEGER_TAG, value);
630 }
631
632 /**
633 * Adds a CONSTANT_Float_info to the constant pool of this symbol table. Does nothing if the

Callers 4

SymbolTableMethod · 0.95
addConstantMethod · 0.95
addConstantFloatMethod · 0.95
visitMethod · 0.80

Calls 6

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

Tested by

no test coverage detected