mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
new DebugSessionOption 'lifecycleManagedByParent'; fixes #128058
This commit is contained in:
@@ -289,6 +289,7 @@ export abstract class ExtHostDebugServiceBase implements IExtHostDebugService, E
|
||||
public startDebugging(folder: vscode.WorkspaceFolder | undefined, nameOrConfig: string | vscode.DebugConfiguration, options: vscode.DebugSessionOptions): Promise<boolean> {
|
||||
return this._debugServiceProxy.$startDebugging(folder ? folder.uri : undefined, nameOrConfig, {
|
||||
parentSessionID: options.parentSession ? options.parentSession.id : undefined,
|
||||
lifecycleManagedByParent: options.lifecycleManagedByParent,
|
||||
repl: options.consoleMode === DebugConsoleMode.MergeWithParent ? 'mergeWithParent' : 'separate',
|
||||
noDebug: options.noDebug,
|
||||
compact: options.compact,
|
||||
|
||||
Reference in New Issue
Block a user