(self)
| 216 | return result |
| 217 | |
| 218 | def _scope(self) -> Scope: |
| 219 | assert len(self.scopes) > 0 |
| 220 | return self.scopes[-1] |
| 221 | |
| 222 | def enter_scope(self, scope_type: ScopeType) -> None: |
| 223 | assert len(self._scope().branch_stmts) > 0 |
no test coverage detected