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

Method addConstantClass

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

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

(final String value)

Source from the content-addressed store, hash-verified

524 * @return a new or already existing Symbol with the given value.
525 */
526 Symbol addConstantClass(final String value) {
527 return addConstantUtf8Reference(Symbol.CONSTANT_CLASS_TAG, value);
528 }
529
530 /**
531 * Adds a CONSTANT_Fieldref_info to the constant pool of this symbol table. Does nothing if the

Callers 15

addConstantMethod · 0.95
putAbstractTypeMethod · 0.80
MethodWriterMethod · 0.80
visitTypeInsnMethod · 0.80
visitTryCatchBlockMethod · 0.80
putFrameTypeMethod · 0.80
visitMethod · 0.80
visitOuterClassMethod · 0.80

Calls 1

Tested by

no test coverage detected