(session: vscode.DebugSession, args)
| 865 | } |
| 866 | |
| 867 | private initializeRTT(session: vscode.DebugSession, args) { |
| 868 | const mySession = CDebugSession.FindSession(session); |
| 869 | if (!mySession.rtt) { |
| 870 | mySession.rtt = new RTTCore(mySession.rttPortMap, args, this.context.extensionPath); |
| 871 | } |
| 872 | } |
| 873 | |
| 874 | private addLiveWatchExpr() { |
| 875 | vscode.window.showInputBox({ |
no test coverage detected