(self)
| 598 | self.check_names(self.stack.variables) |
| 599 | |
| 600 | def is_flushed(self) -> bool: |
| 601 | for var in self.outputs: |
| 602 | if var.in_local and not var.memory_offset: |
| 603 | return False |
| 604 | return self.stack.is_flushed() |
| 605 | |
| 606 | def merge(self, other: "Storage", out: CWriter) -> None: |
| 607 | self.sanity_check() |
nothing calls this directly
no test coverage detected