Type check a complex literal.
(self, e: ComplexExpr)
| 3545 | return self.named_type("builtins.float") |
| 3546 | |
| 3547 | def visit_complex_expr(self, e: ComplexExpr) -> Type: |
| 3548 | """Type check a complex literal.""" |
| 3549 | return self.named_type("builtins.complex") |
| 3550 | |
| 3551 | def visit_ellipsis(self, e: EllipsisExpr) -> Type: |
| 3552 | """Type check '...'.""" |
nothing calls this directly
no test coverage detected