(IFn f0, Object a)
| 148 | } |
| 149 | |
| 150 | public static short invokeOS(IFn f0, Object a) { |
| 151 | if(f0 instanceof IFn.OL) { |
| 152 | return RT.shortCast(((IFn.OL)f0).invokePrim(a)); |
| 153 | } else { |
| 154 | return RT.shortCast(f0.invoke(a)); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | public static byte invokeLB(IFn f0, long a) { |
| 159 | if(f0 instanceof IFn.LL) { |
nothing calls this directly
no test coverage detected