()
| 428 | } |
| 429 | |
| 430 | public saveState() { |
| 431 | const state = this.context.workspaceState; |
| 432 | const data = this.variables.serialize(); |
| 433 | state.update(VERSION_ID, LiveWatchTreeProvider.stateVersion); |
| 434 | state.update(WATCH_LIST_STATE, data); |
| 435 | } |
| 436 | |
| 437 | private isSameSession(session: vscode.DebugSession): boolean { |
| 438 | if (session && LiveWatchTreeProvider.session && (session.id === LiveWatchTreeProvider.session.id)) { |
no test coverage detected