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

@@ -296,7 +296,8 @@ export abstract class ExtHostDebugServiceBase implements IExtHostDebugService, E
return this._debugServiceProxy.$startDebugging(folder ? folder.uri : undefined, nameOrConfig, {
parentSessionID: options.parentSession ? options.parentSession.id : undefined,
repl: options.consoleMode === DebugConsoleMode.MergeWithParent ? 'mergeWithParent' : 'separate',
noDebug: options.noDebug
noDebug: options.noDebug,
noCompact: options.noCompact
});
}