introduce noCompact flag to DebugSessionOptions

#100852
This commit is contained in:
isidor
2020-06-25 10:03:16 +02:00
parent bb3da6620b
commit 8e40c436dd
8 changed files with 24 additions and 4 deletions

View File

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