fix exthost commands issue

This commit is contained in:
Johannes Rieken
2017-12-14 16:03:01 +01:00
parent 20adb31b67
commit f1f2c19669

View File

@@ -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); } }];
}