Overload with structural equality.
(self, other)
| 75 | return not self.__eq__(other) |
| 76 | |
| 77 | def same_as(self, other): |
| 78 | """Overload with structural equality.""" |
| 79 | return super().__eq__(other) |
| 80 | |
| 81 | def is_base_of(self, derived: "StructInfo") -> bool: |
| 82 | """Check if self is base of another derived struct info. |
no test coverage detected