(IFn f0, double a, long b)
| 504 | } |
| 505 | |
| 506 | public static byte invokeDLB(IFn f0, double a, long b) { |
| 507 | if(f0 instanceof IFn.DLL) { |
| 508 | return RT.byteCast(((IFn.DLL)f0).invokePrim(a, b)); |
| 509 | } else { |
| 510 | return RT.byteCast(f0.invoke(a, b)); |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | public static byte invokeOOB(IFn f0, Object a, Object b) { |
| 515 | if(f0 instanceof IFn.OOL) { |
nothing calls this directly
no test coverage detected