(self)
| 240 | ) |
| 241 | |
| 242 | def next_branch(self) -> None: |
| 243 | assert len(self._scope().branch_stmts) > 1 |
| 244 | self._scope().branch_stmts[-1].next_branch() |
| 245 | |
| 246 | def end_branch_statement(self) -> None: |
| 247 | assert len(self._scope().branch_stmts) > 1 |
nothing calls this directly
no test coverage detected