| 365 | |
| 366 | |
| 367 | class HasPlaceholders(BoolTypeQuery): |
| 368 | def __init__(self) -> None: |
| 369 | super().__init__(ANY_STRATEGY) |
| 370 | |
| 371 | def visit_placeholder_type(self, t: PlaceholderType) -> bool: |
| 372 | return True |
| 373 | |
| 374 | |
| 375 | def has_placeholder(typ: Type) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…