(expr: string, session: vscode.DebugSession)
| 563 | } |
| 564 | |
| 565 | public addWatchExpr(expr: string, session: vscode.DebugSession) { |
| 566 | expr = expr.trim(); |
| 567 | if (expr && this.variables.addNewExpr(expr)) { |
| 568 | this.saveState(); |
| 569 | this.refresh(LiveWatchTreeProvider.session); |
| 570 | } |
| 571 | } |
| 572 | |
| 573 | public removeWatchExpr(node: LiveVariableNode) { |
| 574 | try { |
no test coverage detected