Contains the meta-data of an array type.
| 176 | |
| 177 | @dataclass |
| 178 | class Array: |
| 179 | """ |
| 180 | Contains the meta-data of an array type. |
| 181 | """ |
| 182 | |
| 183 | name: str |
| 184 | elem_cnt: int |
| 185 | elem_type: VariableType |
| 186 | off: int |
| 187 | is_local: bool |
| 188 | |
| 189 | |
| 190 | @dataclass |