(self, name: str)
| 290 | return False |
| 291 | |
| 292 | def is_undefined(self, name: str) -> bool: |
| 293 | assert len(self._scope().branch_stmts) > 0 |
| 294 | return self._scope().branch_stmts[-1].is_undefined(name) |
| 295 | |
| 296 | |
| 297 | class Loop: |
nothing calls this directly
no test coverage detected