change noCompress -> compress and make default to not compress sessions in call stack

#101429
This commit is contained in:
isidor
2020-07-02 11:37:27 +02:00
parent 819bc7363d
commit a301dc553b
8 changed files with 24 additions and 13 deletions

View File

@@ -232,7 +232,7 @@ export class MainThreadDebugService implements MainThreadDebugServiceShape, IDeb
noDebug: options.noDebug,
parentSession: this.getSession(options.parentSessionID),
repl: options.repl,
noCompact: options.noCompact
compact: options.compact
};
return this.debugService.startDebugging(launch, nameOrConfig, debugOptions).then(success => {
return success;

View File

@@ -858,7 +858,7 @@ export interface IStartDebuggingOptions {
parentSessionID?: DebugSessionUUID;
repl?: IDebugSessionReplMode;
noDebug?: boolean;
noCompact?: boolean;
compact?: boolean;
}
export interface MainThreadDebugServiceShape extends IDisposable {

View File

@@ -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
});
}