Introduce DebugSessionOptions.noDebug

#99743
This commit is contained in:
isidor
2020-06-12 17:33:00 +02:00
parent 61dcbfc29b
commit cc06e19b15
4 changed files with 11 additions and 2 deletions

View File

@@ -229,7 +229,7 @@ export class MainThreadDebugService implements MainThreadDebugServiceShape, IDeb
const folderUri = folder ? uri.revive(folder) : undefined;
const launch = this.debugService.getConfigurationManager().getLaunch(folderUri);
const debugOptions: IDebugSessionOptions = {
noDebug: false,
noDebug: options.noDebug,
parentSession: this.getSession(options.parentSessionID),
repl: options.repl
};