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

Method invokeStaticMethod

src/jvm/clojure/lang/Reflector.java:352–355  ·  view source on GitHub ↗
(String className, String methodName, Object[] args)

Source from the content-addressed store, hash-verified

350}
351
352public static Object invokeStaticMethod(String className, String methodName, Object[] args) {
353 Class c = RT.classForName(className);
354 return invokeStaticMethod(c, methodName, args);
355}
356
357public static Object invokeStaticMethod(Class c, String methodName, Object[] args) {
358 if(methodName.equals("new"))

Callers 5

evalMethod · 0.95
emitValueMethod · 0.95
invokeMethod · 0.95
readRecordMethod · 0.95

Calls 5

classForNameMethod · 0.95
invokeConstructorMethod · 0.95
getMethodsMethod · 0.95
invokeMatchingMethodMethod · 0.95
equalsMethod · 0.45

Tested by

no test coverage detected