(self)
| 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 "" |
| 153 | dtag = "L" if self.in_local else "" |
| 154 | atag = "A" if self.is_array() else "" |
| 155 | return f"'{self.item.name}'{mtag}{dtag}{atag}" |
| 156 | |
| 157 | @staticmethod |
| 158 | def unused(defn: StackItem, offset: PointerOffset | None) -> "Local": |
no test coverage detected