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

Method loadClassForName

src/jvm/clojure/lang/RT.java:2245–2258  ·  view source on GitHub ↗
(String name)

Source from the content-addressed store, hash-verified

2243}
2244
2245static public Class loadClassForName(String name) {
2246 try
2247 {
2248 classForNameNonLoading(name);
2249 }
2250 catch(Exception e)
2251 {
2252 if (e instanceof ClassNotFoundException)
2253 return null;
2254 else
2255 throw Util.sneakyThrow(e);
2256 }
2257 return classForName(name);
2258}
2259
2260static public float aget(float[] xs, int i){
2261 return xs[i];

Callers 1

loadMethod · 0.95

Calls 3

sneakyThrowMethod · 0.95
classForNameMethod · 0.95

Tested by

no test coverage detected