(editor: vscode.TextEditor)
| 251 | } |
| 252 | |
| 253 | private activeEditorChanged(editor: vscode.TextEditor) { |
| 254 | const session = CortexDebugExtension.getActiveCDSession(); |
| 255 | if (editor !== undefined && session) { |
| 256 | const uri = editor.document.uri; |
| 257 | if (uri.scheme === 'file') { |
| 258 | // vscode.debug.activeDebugSession.customRequest('set-active-editor', { path: uri.path }); |
| 259 | } |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | private examineMemory() { |
| 264 | const cmd = 'mcu-debug.memory-view.addMemoryView'; |
nothing calls this directly
no test coverage detected