(session: vscode.DebugSession)
| 556 | } |
| 557 | |
| 558 | public debugContinued(session: vscode.DebugSession) { |
| 559 | if (this.isSameSession(session)) { |
| 560 | this.isStopped = false; |
| 561 | this.startTimer(); |
| 562 | } |
| 563 | } |
| 564 | |
| 565 | public addWatchExpr(expr: string, session: vscode.DebugSession) { |
| 566 | expr = expr.trim(); |
nothing calls this directly
no test coverage detected