(self)
| 3484 | ) |
| 3485 | |
| 3486 | def is_literal_context(self) -> bool: |
| 3487 | return is_literal_type_like(self.type_context[-1]) |
| 3488 | |
| 3489 | def infer_literal_expr_type(self, value: LiteralValue, fallback_name: str) -> Type: |
| 3490 | """Analyzes the given literal expression and determines if we should be |
no test coverage detected