(self)
| 228 | self.scopes.append(Scope([BranchStatement(initial_state)], scope_type)) |
| 229 | |
| 230 | def exit_scope(self) -> None: |
| 231 | self.scopes.pop() |
| 232 | |
| 233 | def in_scope(self, scope_type: ScopeType) -> bool: |
| 234 | return self._scope().scope_type == scope_type |
no test coverage detected