()
| 438 | ) |
| 439 | |
| 440 | func (s WorkspaceAgentDevcontainerStatus) Transitioning() bool { |
| 441 | switch s { |
| 442 | case WorkspaceAgentDevcontainerStatusStarting, |
| 443 | WorkspaceAgentDevcontainerStatusStopping, |
| 444 | WorkspaceAgentDevcontainerStatusDeleting: |
| 445 | return true |
| 446 | default: |
| 447 | return false |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | // WorkspaceAgentDevcontainer defines the location of a devcontainer |
| 452 | // configuration in a workspace that is visible to the workspace agent. |
no outgoing calls
no test coverage detected