(IFn f0, Object a, Object b)
| 440 | } |
| 441 | |
| 442 | public static short invokeOOS(IFn f0, Object a, Object b) { |
| 443 | if(f0 instanceof IFn.OOL) { |
| 444 | return RT.shortCast(((IFn.OOL)f0).invokePrim(a, b)); |
| 445 | } else { |
| 446 | return RT.shortCast(f0.invoke(a, b)); |
| 447 | } |
| 448 | } |
| 449 | |
| 450 | public static short invokeODS(IFn f0, Object a, double b) { |
| 451 | if(f0 instanceof IFn.ODL) { |
nothing calls this directly
no test coverage detected