(var: Local)
| 457 | |
| 458 | @staticmethod |
| 459 | def is_live(var: Local) -> bool: |
| 460 | return ( |
| 461 | var.name != "unused" and |
| 462 | ( |
| 463 | var.in_local or |
| 464 | var.memory_offset is not None |
| 465 | ) |
| 466 | ) |
| 467 | |
| 468 | def clear_inputs(self, reason:str) -> None: |
| 469 | while len(self.inputs) > self.peeks: |
no outgoing calls
no test coverage detected