()
| 49 | } |
| 50 | |
| 51 | private 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 | |
| 66 | public int getRequiredArity(){ |
| 67 | return 0; |
no test coverage detected