(IFn f0)
| 40 | } |
| 41 | |
| 42 | public static int invokeI(IFn f0) { |
| 43 | if(f0 instanceof IFn.L) { |
| 44 | return RT.intCast(((IFn.L)f0).invokePrim()); |
| 45 | } else { |
| 46 | return RT.intCast(f0.invoke()); |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | public static short invokeS(IFn f0) { |
| 51 | if(f0 instanceof IFn.L) { |
nothing calls this directly
no test coverage detected