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

Method noMethodReport

src/jvm/clojure/lang/Reflector.java:125–128  ·  view source on GitHub ↗
(String methodName, Class contextClass, Object[] args)

Source from the content-addressed store, hash-verified

123}
124
125private static String noMethodReport(String methodName, Class contextClass, Object[] args){
126 return "No matching method " + methodName + " found taking " + args.length + " args"
127 + (contextClass != null ? " for " + contextClass : "");
128}
129
130private static Method matchMethod(List methods, Object[] args) {
131 Method foundm = null;

Callers 1

invokeMatchingMethodMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected