(self, indent: str)
| 203 | instruction_size: int | None = None |
| 204 | |
| 205 | def dump(self, indent: str) -> None: |
| 206 | print( |
| 207 | indent, self.name, ", ".join(self.annotations) if self.annotations else "" |
| 208 | ) |
| 209 | print(indent, self.stack, ", ".join([str(c) for c in self.caches])) |
| 210 | self.properties.dump(" " + indent) |
| 211 | |
| 212 | @property |
| 213 | def size(self) -> int: |
no test coverage detected