in src/extension.ts [106:116]
function toggleSkippingFile(aPath: string): void {
if (!aPath) {
const activeEditor = vscode.window.activeTextEditor;
aPath = activeEditor && activeEditor.document.fileName;
}
if (aPath && vscode.debug.activeDebugSession) {
const args: Core.IToggleSkipFileStatusArgs = typeof aPath === 'string' ? { path: aPath } : { sourceReference: aPath };
vscode.debug.activeDebugSession.customRequest('toggleSkipFileStatus', args);
}
}