Do not use native Proxy as it breaks debugging vscode

This commit is contained in:
Alex Dima
2016-06-27 17:54:40 +02:00
parent 6114fbc118
commit 9f1e006be5
29 changed files with 384 additions and 208 deletions

View File

@@ -7,12 +7,11 @@
import {IThreadService} from 'vs/workbench/services/thread/common/threadService';
import Severity from 'vs/base/common/severity';
import vscode = require('vscode');
import {MainContext} from './extHostProtocol';
import {MainThreadMessageService} from './mainThreadMessageService';
import {MainContext, MainThreadMessageServiceShape} from './extHostProtocol';
export class ExtHostMessageService {
private _proxy: MainThreadMessageService;
private _proxy: MainThreadMessageServiceShape;
constructor(threadService: IThreadService) {
this._proxy = threadService.get(MainContext.MainThreadMessageService);