(self)
| 387 | return self.Name() |
| 388 | |
| 389 | def Hashables(self): |
| 390 | hashables = [self.__class__.__name__] |
| 391 | |
| 392 | if (name := self.Name()) is not None: |
| 393 | hashables.append(name) |
| 394 | |
| 395 | hashables.extend(self._hashables) |
| 396 | |
| 397 | return hashables |
| 398 | |
| 399 | def HashablesForChild(self): |
| 400 | return None |
no test coverage detected