(IFn f0, long a, long b)
| 464 | } |
| 465 | |
| 466 | public static byte invokeLLB(IFn f0, long a, long b) { |
| 467 | if(f0 instanceof IFn.LLL) { |
| 468 | return RT.byteCast(((IFn.LLL)f0).invokePrim(a, b)); |
| 469 | } else { |
| 470 | return RT.byteCast(f0.invoke(a, b)); |
| 471 | } |
| 472 | } |
| 473 | |
| 474 | public static byte invokeLOB(IFn f0, long a, Object b) { |
| 475 | if(f0 instanceof IFn.LOL) { |
nothing calls this directly
no test coverage detected