Type check a float literal (trivial).
(self, e: FloatExpr)
| 3541 | return self.infer_literal_expr_type(e.value, "builtins.bytes") |
| 3542 | |
| 3543 | def visit_float_expr(self, e: FloatExpr) -> Type: |
| 3544 | """Type check a float literal (trivial).""" |
| 3545 | return self.named_type("builtins.float") |
| 3546 | |
| 3547 | def visit_complex_expr(self, e: ComplexExpr) -> Type: |
| 3548 | """Type check a complex literal.""" |
nothing calls this directly
no test coverage detected