(IFn f0, double a, long b)
| 288 | } |
| 289 | |
| 290 | public static long invokeDLL(IFn f0, double a, long b) { |
| 291 | if(f0 instanceof IFn.DLL) { |
| 292 | return ((IFn.DLL)f0).invokePrim(a, b); |
| 293 | } else { |
| 294 | return RT.longCast(f0.invoke(a, b)); |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | public static long invokeOOL(IFn f0, Object a, Object b) { |
| 299 | if(f0 instanceof IFn.OOL) { |
nothing calls this directly
no test coverage detected