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

Method load

src/jvm/clojure/lang/FnLoaderThunk.java:51–64  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

49}
50
51private void load() {
52 if(fn == null)
53 {
54 try
55 {
56 fn = (IFn) Class.forName(fnClassName,true,loader).getDeclaredConstructor().newInstance();
57 }
58 catch(Exception e)
59 {
60 throw Util.sneakyThrow(e);
61 }
62 v.root = fn;
63 }
64}
65
66public int getRequiredArity(){
67 return 0;

Callers 2

invokeMethod · 0.95
doInvokeMethod · 0.95

Calls 2

sneakyThrowMethod · 0.95
newInstanceMethod · 0.80

Tested by

no test coverage detected