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

Method destubClassName

src/jvm/clojure/lang/Compiler.java:7922–7927  ·  view source on GitHub ↗
(String className)

Source from the content-addressed store, hash-verified

7920}
7921
7922static String destubClassName(String className){
7923 //skip over prefix + '.' or '/'
7924 if(className.startsWith(COMPILE_STUB_PREFIX))
7925 return className.substring(COMPILE_STUB_PREFIX.length()+1);
7926 return className;
7927}
7928
7929static Type getType(Class c){
7930 String descriptor = Type.getType(c).getDescriptor();

Callers 3

getTypeMethod · 0.95
emitMethod · 0.80
emitValueMethod · 0.80

Calls 1

lengthMethod · 0.65

Tested by

no test coverage detected