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

@@ -6,12 +6,11 @@
import {TPromise} from 'vs/base/common/winjs.base';
import {IThreadService} from 'vs/workbench/services/thread/common/threadService';
import {MainContext} from './extHostProtocol';
import {MainThreadLanguages} from './mainThreadLanguages';
import {MainContext, MainThreadLanguagesShape} from './extHostProtocol';
export class ExtHostLanguages {
private _proxy: MainThreadLanguages;
private _proxy: MainThreadLanguagesShape;
constructor(
threadService: IThreadService