rename console to activeDebugConsole; fixes #37279

This commit is contained in:
Andre Weinand
2017-11-21 18:13:22 +01:00
parent 728f71d1bf
commit 0688b0543e
4 changed files with 30 additions and 32 deletions

View File

@@ -495,8 +495,8 @@ export function createApiFactory(
get activeDebugSession() {
return extHostDebugService.activeDebugSession;
},
get console() {
return extHostDebugService.debugConsole;
get activeDebugConsole() {
return extHostDebugService.activeDebugConsole;
},
startDebugging(folder: vscode.WorkspaceFolder | undefined, nameOrConfig: string | vscode.DebugConfiguration) {
return extHostDebugService.startDebugging(folder, nameOrConfig);