(self, op: FloatOp)
| 463 | self.fail(op, f"Operand types have incompatible signs: {left}, {right}") |
| 464 | |
| 465 | def visit_float_op(self, op: FloatOp) -> None: |
| 466 | self.expect_float(op, op.lhs) |
| 467 | self.expect_float(op, op.rhs) |
| 468 | |
| 469 | def visit_float_neg(self, op: FloatNeg) -> None: |
| 470 | self.expect_float(op, op.src) |
nothing calls this directly
no test coverage detected