(IFn f0, double a, long b)
| 360 | } |
| 361 | |
| 362 | public static int invokeDLI(IFn f0, double a, long b) { |
| 363 | if(f0 instanceof IFn.DLL) { |
| 364 | return RT.intCast(((IFn.DLL)f0).invokePrim(a, b)); |
| 365 | } else { |
| 366 | return RT.intCast(f0.invoke(a, b)); |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | public static int invokeOOI(IFn f0, Object a, Object b) { |
| 371 | if(f0 instanceof IFn.OOL) { |
nothing calls this directly
no test coverage detected