(Object x, Object y)
| 152 | } |
| 153 | |
| 154 | static public Number add(Object x, Object y){ |
| 155 | return ops(x).combine(ops(y)).add((Number)x, (Number)y); |
| 156 | } |
| 157 | |
| 158 | static public Number addP(Object x, Object y){ |
| 159 | return ops(x).combine(ops(y)).addP((Number)x, (Number)y); |
no test coverage detected