(self, b: Block)
| 5428 | # |
| 5429 | |
| 5430 | def visit_block(self, b: Block) -> None: |
| 5431 | if b.is_unreachable: |
| 5432 | return |
| 5433 | self.block_depth[-1] += 1 |
| 5434 | for s in b.body: |
| 5435 | self.accept(s) |
| 5436 | self.block_depth[-1] -= 1 |
| 5437 | |
| 5438 | def visit_block_maybe(self, b: Block | None) -> None: |
| 5439 | if b: |
no test coverage detected