(IFn f0, Object a, Object b)
| 512 | } |
| 513 | |
| 514 | public static byte invokeOOB(IFn f0, Object a, Object b) { |
| 515 | if(f0 instanceof IFn.OOL) { |
| 516 | return RT.byteCast(((IFn.OOL)f0).invokePrim(a, b)); |
| 517 | } else { |
| 518 | return RT.byteCast(f0.invoke(a, b)); |
| 519 | } |
| 520 | } |
| 521 | |
| 522 | public static byte invokeODB(IFn f0, Object a, double b) { |
| 523 | if(f0 instanceof IFn.ODL) { |
nothing calls this directly
no test coverage detected