| 214 | |
| 215 | |
| 216 | class DwarfSubscriptDataBound: |
| 217 | def __init__(self): |
| 218 | self.isConstant = False |
| 219 | self.constant = 0 |
| 220 | self.location: DwarfLocation = None |
| 221 | |
| 222 | def __str__(self): |
| 223 | if self.isConstant: |
| 224 | return f"{self.constant}" |
| 225 | else: |
| 226 | return f"{self.location}" |
| 227 | |
| 228 | |
| 229 | class DwarfType: |