(session: vscode.DebugSession)
| 702 | |
| 703 | // Assuming 'session' valid and it a cortex-debug session |
| 704 | private isDebugging(session: vscode.DebugSession) { |
| 705 | const noDebug = this.getCurrentProp(session, 'noDebug'); |
| 706 | return (noDebug !== true); // If it is exactly equal to 'true' we are doing a 'run without debugging' |
| 707 | } |
| 708 | |
| 709 | private receivedStopEvent(e: vscode.DebugSessionCustomEvent) { |
| 710 | const mySession = CDebugSession.FindSession(e.session); |
no test coverage detected