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,20 +6,14 @@
import {TPromise} from 'vs/base/common/winjs.base';
import {IThreadService} from 'vs/workbench/services/thread/common/threadService';
import {IPickOpenEntry} from 'vs/workbench/services/quickopen/common/quickOpenService';
import {QuickPickOptions, QuickPickItem, InputBoxOptions} from 'vscode';
import {MainContext} from './extHostProtocol';
import {MainThreadQuickOpen} from './mainThreadQuickOpen';
export interface MyQuickPickItems extends IPickOpenEntry {
handle: number;
}
import {MainContext, MainThreadQuickOpenShape, MyQuickPickItems} from './extHostProtocol';
export type Item = string | QuickPickItem;
export class ExtHostQuickOpen {
private _proxy: MainThreadQuickOpen;
private _proxy: MainThreadQuickOpenShape;
private _onDidSelectItem: (handle: number) => void;
private _validateInput: (input: string) => string;