(workspaceId: string)
| 4028 | } |
| 4029 | |
| 4030 | private isForegroundAwaiting(workspaceId: string): boolean { |
| 4031 | const count = this.foregroundAwaitCountByWorkspaceId.get(workspaceId); |
| 4032 | return typeof count === "number" && count > 0; |
| 4033 | } |
| 4034 | |
| 4035 | private startForegroundAwait(workspaceId: string): () => void { |
| 4036 | assert(workspaceId.length > 0, "startForegroundAwait: workspaceId must be non-empty"); |
no test coverage detected