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

Method getObjectType

src/jvm/clojure/asm/Type.java:186–189  ·  view source on GitHub ↗

Returns the Type corresponding to the given internal name. @param internalName an internal name. @return the Type corresponding to the given internal name.

(final String internalName)

Source from the content-addressed store, hash-verified

184 * @return the {@link Type} corresponding to the given internal name.
185 */
186 public static Type getObjectType(final String internalName) {
187 return new Type(
188 internalName.charAt(0) == '[' ? ARRAY : INTERNAL, internalName, 0, internalName.length());
189 }
190
191 /**
192 * Returns the {@link Type} corresponding to the given method descriptor. Equivalent to <code>

Callers 10

parseMethod · 0.95
compileMethod · 0.95
compileMethod · 0.95
buildMethod · 0.95
compileStubMethod · 0.95
readConstMethod · 0.95
GeneratorAdapterClass · 0.95
visitFrameMethod · 0.95

Calls 1

lengthMethod · 0.65

Tested by

no test coverage detected