(session: vscode.DebugSession, args)
| 853 | } |
| 854 | |
| 855 | private initializeSWO(session: vscode.DebugSession, args) { |
| 856 | const mySession = CDebugSession.FindSession(session); |
| 857 | if (!mySession.swoSource) { |
| 858 | vscode.window.showErrorMessage('Tried to initialize SWO Decoding without a SWO data source'); |
| 859 | return; |
| 860 | } |
| 861 | |
| 862 | if (!mySession.swo) { |
| 863 | mySession.swo = new SWOCore(session, mySession.swoSource, args, this.context.extensionPath); |
| 864 | } |
| 865 | } |
| 866 | |
| 867 | private initializeRTT(session: vscode.DebugSession, args) { |
| 868 | const mySession = CDebugSession.FindSession(session); |
no test coverage detected