MCPcopy Create free account
hub / github.com/Marus/cortex-debug / isDebugging

Method isDebugging

src/frontend/extension.ts:704–707  ·  view source on GitHub ↗
(session: vscode.DebugSession)

Source from the content-addressed store, hash-verified

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);

Callers 1

settingsChangedMethod · 0.95

Calls 1

getCurrentPropMethod · 0.95

Tested by

no test coverage detected