(IFn f0, double a, long b)
| 432 | } |
| 433 | |
| 434 | public static short invokeDLS(IFn f0, double a, long b) { |
| 435 | if(f0 instanceof IFn.DLL) { |
| 436 | return RT.shortCast(((IFn.DLL)f0).invokePrim(a, b)); |
| 437 | } else { |
| 438 | return RT.shortCast(f0.invoke(a, b)); |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | public static short invokeOOS(IFn f0, Object a, Object b) { |
| 443 | if(f0 instanceof IFn.OOL) { |
nothing calls this directly
no test coverage detected