Make Event a named export

There are many places in the code that do `import Event, { ...} from '.../event'`.
This commit is contained in:
Matt Bierner
2018-03-14 14:25:30 -07:00
parent fe6cab7118
commit 81767beaca
267 changed files with 269 additions and 271 deletions

View File

@@ -5,7 +5,7 @@
import { MainContext, MainThreadWebviewsShape, IMainContext, ExtHostWebviewsShape, WebviewHandle } from './extHost.protocol';
import * as vscode from 'vscode';
import Event, { Emitter } from 'vs/base/common/event';
import { Event, Emitter } from 'vs/base/common/event';
import * as typeConverters from 'vs/workbench/api/node/extHostTypeConverters';
import { Position } from 'vs/platform/editor/common/editor';
import { TPromise } from 'vs/base/common/winjs.base';