| 454 | |
| 455 | |
| 456 | class HasAnyQuery(BoolTypeQuery): |
| 457 | def __init__(self) -> None: |
| 458 | super().__init__(ANY_STRATEGY) |
| 459 | |
| 460 | def visit_any(self, t: AnyType) -> bool: |
| 461 | return not is_special_form_any(t) |
| 462 | |
| 463 | |
| 464 | def is_imprecise2(t: Type) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…