(self, o: BreakStmt)
| 233 | self.record_precise_if_checked_scope(o) |
| 234 | |
| 235 | def visit_break_stmt(self, o: BreakStmt) -> None: |
| 236 | self.record_precise_if_checked_scope(o) |
| 237 | |
| 238 | def visit_continue_stmt(self, o: ContinueStmt) -> None: |
| 239 | self.record_precise_if_checked_scope(o) |
nothing calls this directly
no test coverage detected