(self, visitor: StatementVisitor[T])
| 1817 | self.is_unreachable = is_unreachable |
| 1818 | |
| 1819 | def accept(self, visitor: StatementVisitor[T]) -> T: |
| 1820 | return visitor.visit_block(self) |
| 1821 | |
| 1822 | |
| 1823 | # Statements |
nothing calls this directly
no test coverage detected