(self, visitor: TypeVisitor[T])
| 296 | return True |
| 297 | |
| 298 | def accept(self, visitor: TypeVisitor[T]) -> T: |
| 299 | raise RuntimeError("Not implemented", type(self)) |
| 300 | |
| 301 | def __repr__(self) -> str: |
| 302 | return self.accept(TypeStrVisitor(options=Options())) |
no test coverage detected