(IFn f0)
| 32 | } |
| 33 | |
| 34 | public static long invokeL(IFn f0) { |
| 35 | if(f0 instanceof IFn.L) { |
| 36 | return ((IFn.L)f0).invokePrim(); |
| 37 | } else { |
| 38 | return RT.longCast(f0.invoke()); |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | public static int invokeI(IFn f0) { |
| 43 | if(f0 instanceof IFn.L) { |
nothing calls this directly
no test coverage detected