(self, scope_type: ScopeType)
| 231 | self.scopes.pop() |
| 232 | |
| 233 | def in_scope(self, scope_type: ScopeType) -> bool: |
| 234 | return self._scope().scope_type == scope_type |
| 235 | |
| 236 | def start_branch_statement(self) -> None: |
| 237 | assert len(self._scope().branch_stmts) > 0 |
no test coverage detected