Add DebugSessionOptions suppressSaveBeforeStart

See microsoft/vscode-jupyter#6898
This commit is contained in:
Rob Lourens
2021-09-02 10:59:42 -07:00
parent a6e25d3604
commit cdc8e53cf3
4 changed files with 9 additions and 2 deletions

View File

@@ -293,7 +293,8 @@ export abstract class ExtHostDebugServiceBase implements IExtHostDebugService, E
repl: options.consoleMode === DebugConsoleMode.MergeWithParent ? 'mergeWithParent' : 'separate',
noDebug: options.noDebug,
compact: options.compact,
debugUI: options.debugUI
debugUI: options.debugUI,
suppressSaveBeforeStart: options.suppressSaveBeforeStart
});
}