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

Method methodDescription

src/jvm/clojure/lang/Compiler.java:1413–1417  ·  view source on GitHub ↗
(Class c, String methodName)

Source from the content-addressed store, hash-verified

1411}
1412
1413private static String methodDescription(Class c, String methodName) {
1414 boolean isCtor = c != null && methodName.equals("new");
1415 String type = isCtor ? "constructor" : "method";
1416 return type + (isCtor ? "" : " " + methodName) + " in class " + c.getName();
1417}
1418
1419static abstract class FieldExpr extends HostExpr{
1420}

Callers 3

checkMethodArityMethod · 0.95

Calls 2

getNameMethod · 0.65
equalsMethod · 0.45

Tested by

no test coverage detected