(Object x, Object y)
| 176 | } |
| 177 | |
| 178 | static public Number multiplyP(Object x, Object y){ |
| 179 | return ops(x).combine(ops(y)).multiplyP((Number)x, (Number)y); |
| 180 | } |
| 181 | |
| 182 | static public Number divide(Object x, Object y){ |
| 183 | if (isNaN(x)){ |
nothing calls this directly
no test coverage detected