Integrate API changes into extHost

This commit is contained in:
Michel Kaporin
2017-07-27 18:03:23 +02:00
parent 36245bdf37
commit 726eeeb1aa
2 changed files with 3 additions and 3 deletions

View File

@@ -671,14 +671,14 @@ class ColorProviderAdapter {
private _proxy: MainThreadLanguageFeaturesShape;
private _documents: ExtHostDocuments;
private _provider: vscode.DocumentColorProvider;
private _formatStorageMap: Map<vscode.IColorFormat, number>;
private _formatStorageMap: Map<vscode.ColorFormat, number>;
private _formatStorageIndex;
constructor(proxy: MainThreadLanguageFeaturesShape, documents: ExtHostDocuments, provider: vscode.DocumentColorProvider) {
this._proxy = proxy;
this._documents = documents;
this._provider = provider;
this._formatStorageMap = new Map<vscode.IColorFormat, number>();
this._formatStorageMap = new Map<vscode.ColorFormat, number>();
this._formatStorageIndex = 0;
}