Type check a list expression [...].
(self, e: ListExpr)
| 5164 | return AnyType(TypeOfAny.special_form) |
| 5165 | |
| 5166 | def visit_list_expr(self, e: ListExpr) -> Type: |
| 5167 | """Type check a list expression [...].""" |
| 5168 | return self.check_lst_expr(e, "builtins.list", "<list>") |
| 5169 | |
| 5170 | def visit_set_expr(self, e: SetExpr) -> Type: |
| 5171 | return self.check_lst_expr(e, "builtins.set", "<set>") |
nothing calls this directly
no test coverage detected