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,15 +6,9 @@
import Event, {Emitter} from 'vs/base/common/event';
import {Disposable} from './extHostTypes';
import URI from 'vs/base/common/uri';
import {match} from 'vs/base/common/glob';
import {Uri, FileSystemWatcher as _FileSystemWatcher} from 'vscode';
export interface FileSystemEvents {
created: URI[];
changed: URI[];
deleted: URI[];
}
import {FileSystemEvents} from './extHostProtocol';
export class FileSystemWatcher implements _FileSystemWatcher {