(IFn f0, long a, Object b)
| 328 | } |
| 329 | |
| 330 | public static int invokeLOI(IFn f0, long a, Object b) { |
| 331 | if(f0 instanceof IFn.LOL) { |
| 332 | return RT.intCast(((IFn.LOL)f0).invokePrim(a, b)); |
| 333 | } else { |
| 334 | return RT.intCast(f0.invoke(a, b)); |
| 335 | } |
| 336 | } |
| 337 | |
| 338 | public static int invokeOLI(IFn f0, Object a, long b) { |
| 339 | if(f0 instanceof IFn.OLL) { |
nothing calls this directly
no test coverage detected