(self, visitor: TypeVisitor[T])
| 1670 | self.extra_attrs = extra_attrs |
| 1671 | |
| 1672 | def accept(self, visitor: TypeVisitor[T]) -> T: |
| 1673 | return visitor.visit_instance(self) |
| 1674 | |
| 1675 | def __hash__(self) -> int: |
| 1676 | if self._hash == -1: |
nothing calls this directly
no test coverage detected