()
| 236 | } |
| 237 | |
| 238 | public expandChildren(): Promise<void> { |
| 239 | return new Promise<void>((resolve) => { |
| 240 | this.expanded = true; |
| 241 | // If we still have a current session, try to get the children or |
| 242 | // wait for the next timer |
| 243 | this.refreshChildren(resolve); |
| 244 | }); |
| 245 | } |
| 246 | |
| 247 | public refresh(session: vscode.DebugSession): Promise<void> { |
| 248 | return new Promise<void>((resolve) => { |
no test coverage detected