(self)
| 276 | |
| 277 | class DwarfSubscriptDataItem: |
| 278 | def __init__(self): |
| 279 | self.resolved_type = None |
| 280 | self.dwarf_type = DwarfType() |
| 281 | self.lowBound = DwarfSubscriptDataBound() |
| 282 | self.highBound = DwarfSubscriptDataBound() |
| 283 | |
| 284 | def __str__(self): |
| 285 | return f"SubscriptDataItem({self.type}[{self.lowBound}-{self.highBound}])" |
nothing calls this directly
no test coverage detected