(self, op: FloatNeg)
| 467 | self.expect_float(op, op.rhs) |
| 468 | |
| 469 | def visit_float_neg(self, op: FloatNeg) -> None: |
| 470 | self.expect_float(op, op.src) |
| 471 | |
| 472 | def visit_float_comparison_op(self, op: FloatComparisonOp) -> None: |
| 473 | self.expect_float(op, op.lhs) |
nothing calls this directly
no test coverage detected