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

Method newHandle

src/jvm/clojure/asm/ClassWriter.java:811–815  ·  view source on GitHub ↗

Adds a handle to the constant pool of the class being build. Does nothing if the constant pool already contains a similar item. This method is intended for Attribute sub classes, and is normally not needed by class generators or adapters. @param tag the kind of this handle. Must be {

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

Source from the content-addressed store, hash-verified

809 * boolean)}.
810 */
811 @Deprecated
812 public int newHandle(
813 final int tag, final String owner, final String name, final String descriptor) {
814 return newHandle(tag, owner, name, descriptor, tag == Opcodes.H_INVOKEINTERFACE);
815 }
816
817 /**
818 * Adds a handle to the constant pool of the class being build. Does nothing if the constant pool

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected