From f1f2c19669e42db8f90d34af0d74ca95ff72e3e4 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 14 Dec 2017 16:03:01 +0100 Subject: [PATCH] fix exthost commands issue --- src/vs/workbench/api/node/extHostCommands.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/node/extHostCommands.ts b/src/vs/workbench/api/node/extHostCommands.ts index 97ee3eb8232..da76af9d827 100644 --- a/src/vs/workbench/api/node/extHostCommands.ts +++ b/src/vs/workbench/api/node/extHostCommands.ts @@ -41,8 +41,8 @@ export class ExtHostCommands implements ExtHostCommandsShape { logService: ILogService ) { this._proxy = mainContext.getProxy(MainContext.MainThreadCommands); - this._converter = new CommandsConverter(this, heapService); this._logService = logService; + this._converter = new CommandsConverter(this, heapService); this._argumentProcessors = [{ processArgument(a) { return revive(a, 0); } }]; } -- GitLab