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

Method getMethodType

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

Returns the Type corresponding to the given method descriptor. Equivalent to Type.getType(methodDescriptor) . @param methodDescriptor a method descriptor. @return the Type corresponding to the given method descriptor.

(final String methodDescriptor)

Source from the content-addressed store, hash-verified

196 * @return the {@link Type} corresponding to the given method descriptor.
197 */
198 public static Type getMethodType(final String methodDescriptor) {
199 return new Type(METHOD, methodDescriptor, 0, methodDescriptor.length());
200 }
201
202 /**
203 * Returns the method {@link Type} corresponding to the given argument and return types.

Callers 1

readConstMethod · 0.95

Calls 3

getTypeMethod · 0.95
getMethodDescriptorMethod · 0.95
lengthMethod · 0.65

Tested by

no test coverage detected