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

Method addConstantFieldref

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

Adds a CONSTANT_Fieldref_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param owner the internal name of a class. @param name a field name. @param descriptor a field descriptor. @return a new or already existing Symbol with the gi

(final String owner, final String name, final String descriptor)

Source from the content-addressed store, hash-verified

537 * @return a new or already existing Symbol with the given value.
538 */
539 Symbol addConstantFieldref(final String owner, final String name, final String descriptor) {
540 return addConstantMemberReference(Symbol.CONSTANT_FIELDREF_TAG, owner, name, descriptor);
541 }
542
543 /**
544 * Adds a CONSTANT_Methodref_info or CONSTANT_InterfaceMethodref_info to the constant pool of this

Callers 3

visitFieldInsnMethod · 0.80
newFieldMethod · 0.80

Calls 1

Tested by

no test coverage detected