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

Method addConstantMethodType

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

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

(final String methodDescriptor)

Source from the content-addressed store, hash-verified

875 * @return a new or already existing Symbol with the given value.
876 */
877 Symbol addConstantMethodType(final String methodDescriptor) {
878 return addConstantUtf8Reference(Symbol.CONSTANT_METHOD_TYPE_TAG, methodDescriptor);
879 }
880
881 /**
882 * Adds a CONSTANT_Dynamic_info to the constant pool of this symbol table. Also adds the related

Callers 2

addConstantMethod · 0.95
newMethodTypeMethod · 0.80

Calls 1

Tested by

no test coverage detected