(workspace_name)
| 583 | |
| 584 | @contextlib.contextmanager |
| 585 | def WorkspaceGuard(workspace_name): |
| 586 | current = CurrentWorkspace() |
| 587 | SwitchWorkspace(workspace_name, True) |
| 588 | yield |
| 589 | SwitchWorkspace(current) |
| 590 | |
| 591 | |
| 592 | def StartImmediate(i_know=False): |
no outgoing calls
no test coverage detected
searching dependent graphs…