(self, e: SetExpr)
| 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>") |
| 5172 | |
| 5173 | def fast_container_type( |
| 5174 | self, e: ListExpr | SetExpr | TupleExpr, container_fullname: str |
nothing calls this directly
no test coverage detected