(self, func: FuncBase)
| 8032 | return self.analyze_iterable_item_type_without_expression(it, context)[1] |
| 8033 | |
| 8034 | def function_type(self, func: FuncBase) -> FunctionLike: |
| 8035 | return function_type(func, self.named_type("builtins.function")) |
| 8036 | |
| 8037 | def push_type_map(self, type_map: TypeMap, *, from_assignment: bool = True) -> None: |
| 8038 | if is_unreachable_map(type_map): |
no test coverage detected