mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
change noCompress -> compress and make default to not compress sessions in call stack
#101429
This commit is contained in:
@@ -858,7 +858,7 @@ export interface IStartDebuggingOptions {
|
||||
parentSessionID?: DebugSessionUUID;
|
||||
repl?: IDebugSessionReplMode;
|
||||
noDebug?: boolean;
|
||||
noCompact?: boolean;
|
||||
compact?: boolean;
|
||||
}
|
||||
|
||||
export interface MainThreadDebugServiceShape extends IDisposable {
|
||||
|
||||
@@ -297,7 +297,7 @@ export abstract class ExtHostDebugServiceBase implements IExtHostDebugService, E
|
||||
parentSessionID: options.parentSession ? options.parentSession.id : undefined,
|
||||
repl: options.consoleMode === DebugConsoleMode.MergeWithParent ? 'mergeWithParent' : 'separate',
|
||||
noDebug: options.noDebug,
|
||||
noCompact: options.noCompact
|
||||
compact: options.compact
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user