(t: Type | None)
| 6712 | |
| 6713 | |
| 6714 | def has_uninhabited_component(t: Type | None) -> bool: |
| 6715 | return t is not None and t.accept(HasUninhabitedComponentsQuery()) |
| 6716 | |
| 6717 | |
| 6718 | class HasUninhabitedComponentsQuery(types.BoolTypeQuery): |
no test coverage detected
searching dependent graphs…