(self, o: PassStmt)
| 230 | super().visit_expression_stmt(o) |
| 231 | |
| 232 | def visit_pass_stmt(self, o: PassStmt) -> None: |
| 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) |
nothing calls this directly
no test coverage detected