Have MainThreadDocumentsAndEditors follow the lifecycle of the extension host

This commit is contained in:
Alex Dima
2017-08-16 11:17:57 +02:00
parent f646343204
commit c956a19fab
7 changed files with 90 additions and 32 deletions

View File

@@ -78,6 +78,8 @@ export interface IExtHostContext {
* Returns a proxy to an object addressable/named in the extension host process.
*/
get<T>(identifier: ProxyIdentifier<T>): T;
set<T>(identifier: ProxyIdentifier<T>, instance: T): void;
}
export interface IMainContext {