(IFn f0, long a, Object b)
| 256 | } |
| 257 | |
| 258 | public static long invokeLOL(IFn f0, long a, Object b) { |
| 259 | if(f0 instanceof IFn.LOL) { |
| 260 | return ((IFn.LOL)f0).invokePrim(a, b); |
| 261 | } else { |
| 262 | return RT.longCast(f0.invoke(a, b)); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | public static long invokeOLL(IFn f0, Object a, long b) { |
| 267 | if(f0 instanceof IFn.OLL) { |
nothing calls this directly
no test coverage detected