(IFn f0, long a, long b)
| 248 | } |
| 249 | |
| 250 | public static long invokeLLL(IFn f0, long a, long b) { |
| 251 | if(f0 instanceof IFn.LLL) { |
| 252 | return ((IFn.LLL)f0).invokePrim(a, b); |
| 253 | } else { |
| 254 | return RT.longCast(f0.invoke(a, b)); |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | public static long invokeLOL(IFn f0, long a, Object b) { |
| 259 | if(f0 instanceof IFn.LOL) { |
nothing calls this directly
no test coverage detected