Add flag for "simple" debug UI (#128801)

* Implement simple debug UI mode

* Don't show debug viewlet on step

* Move flag to proposed

* Pass around full debugUI options object

* Implement isSimpleUI in mock
This commit is contained in:
Rob Lourens
2021-07-19 17:49:17 -07:00
committed by GitHub
parent e5c6200888
commit 247e62d79a
10 changed files with 40 additions and 7 deletions

View File

@@ -291,7 +291,8 @@ export abstract class ExtHostDebugServiceBase implements IExtHostDebugService, E
parentSessionID: options.parentSession ? options.parentSession.id : undefined,
repl: options.consoleMode === DebugConsoleMode.MergeWithParent ? 'mergeWithParent' : 'separate',
noDebug: options.noDebug,
compact: options.compact
compact: options.compact,
debugUI: options.debugUI
});
}