(self)
| 146 | in_local: bool |
| 147 | |
| 148 | def __repr__(self) -> str: |
| 149 | return f"Local('{self.item.name}', mem={self.memory_offset}, local={self.in_local}, array={self.is_array()})" |
| 150 | |
| 151 | def compact_str(self) -> str: |
| 152 | mtag = "M" if self.memory_offset else "" |