(var: Local)
| 448 | |
| 449 | @staticmethod |
| 450 | def needs_defining(var: Local) -> bool: |
| 451 | return ( |
| 452 | not var.item.peek and |
| 453 | not var.in_local and |
| 454 | not var.is_array() and |
| 455 | var.name != "unused" |
| 456 | ) |
| 457 | |
| 458 | @staticmethod |
| 459 | def is_live(var: Local) -> bool: |
no test coverage detected