| 66 | |
| 67 | |
| 68 | class GArrayType(GType): |
| 69 | def __init__(self): |
| 70 | self.subscripts: List[DwarfSubscriptDataItem] = [] |
| 71 | |
| 72 | def __str__(self): |
| 73 | subscripts_str = ", ".join(str(subscript) for subscript in self.subscripts) |
| 74 | return f"ArrayType({subscripts_str})" |
| 75 | |
| 76 | |
| 77 | class GFundType(GType): |
no outgoing calls
no test coverage detected