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

Method baseLoader

src/jvm/clojure/lang/RT.java:2196–2202  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2194}
2195
2196static public ClassLoader baseLoader(){
2197 if(Compiler.LOADER.isBound())
2198 return (ClassLoader) Compiler.LOADER.deref();
2199 else if(booleanCast(USE_CONTEXT_CLASSLOADER.deref()))
2200 return Thread.currentThread().getContextClassLoader();
2201 return Compiler.class.getClassLoader();
2202}
2203
2204static public InputStream resourceAsStream(ClassLoader loader, String name){
2205 if (loader == null) {

Callers 7

boxArgMethod · 0.95
loadResourceScriptMethod · 0.95
compileMethod · 0.95
loadMethod · 0.95
runMethod · 0.95
classForNameMethod · 0.95

Calls 3

booleanCastMethod · 0.95
derefMethod · 0.65
isBoundMethod · 0.45

Tested by

no test coverage detected