Move deltaExtensions related methods up to AbstractExtensionService

This commit is contained in:
Alex Dima
2020-09-25 22:23:34 +02:00
parent 607ee4ae72
commit 87dd7d6a9c
5 changed files with 269 additions and 242 deletions

View File

@@ -506,7 +506,7 @@ export abstract class AbstractExtHostExtensionService extends Disposable impleme
const host: IExtensionActivationHost = {
folders: folders.map(folder => folder.uri),
forceUsingSearch: localWithRemote,
exists: (path) => this._hostUtils.exists(path),
exists: (uri) => this._hostUtils.exists(uri.fsPath),
checkExists: (folders, includes, token) => this._mainThreadWorkspaceProxy.$checkExists(folders, includes, token)
};