(map: TypeMap)
| 8809 | |
| 8810 | |
| 8811 | def is_unreachable_map(map: TypeMap) -> bool: |
| 8812 | return any(isinstance(get_proper_type(v), UninhabitedType) for v in map.values()) |
| 8813 | |
| 8814 | |
| 8815 | def and_conditional_maps(m1: TypeMap, m2: TypeMap, *, use_meet: bool = False) -> TypeMap: |
no test coverage detected
searching dependent graphs…