Home
last modified time | relevance | path

Searched refs:moduleSpecifierCache (Results 1 – 5 of 5) sorted by relevance

/third_party/typescript/src/testRunner/unittests/tsserver/
DmoduleSpecifierCache.ts41 const { moduleSpecifierCache } = setup(); constant
42 …assert.isFalse(moduleSpecifierCache.get(bTs.path as Path, aTs.path as Path, {}, {})?.isBlockedByPa…
46 const { moduleSpecifierCache, triggerCompletions } = setup(); constant
49 … const mobxCache = moduleSpecifierCache.get(cTs.path as Path, mobxDts.path as Path, {}, {});
62 …const { host, session, moduleSpecifierCache, triggerCompletions } = setup(host => createLoggerWith… constant
67 assert.equal(moduleSpecifierCache.count(), 0);
72 const { host, moduleSpecifierCache } = setup(); constant
75 …assert.isFalse(moduleSpecifierCache.get(bTs.path as Path, aTs.path as Path, {}, {})?.isBlockedByPa…
79 const { host, moduleSpecifierCache } = setup(); constant
82 assert.equal(moduleSpecifierCache.count(), 0);
[all …]
/third_party/typescript/src/services/
DexportInfoMap.ts291 moduleSpecifierCache: ModuleSpecifierCache | undefined,
294 const cachedResult = moduleSpecifierCache?.get(from.path, to.path, preferences, {});
317moduleSpecifierCache?.setBlockedByPackageJsonDependencies(from.path, to.path, preferences, {}, !is…
Dcompletions.ts2847 const moduleSpecifierCache = host.getModuleSpecifierCache?.(); constant
2950 moduleSpecifierCache);
/third_party/typescript/src/server/
Dproject.ts304 private moduleSpecifierCache = createModuleSpecifierCache(this);
911 this.moduleSpecifierCache = undefined!;
1141 this.moduleSpecifierCache.clear();
1351 this.moduleSpecifierCache.clear();
1532 this.moduleSpecifierCache.clear();
1858 return this.moduleSpecifierCache;
/third_party/typescript/src/services/codefixes/
DimportFixes.ts963 const moduleSpecifierCache = host.getModuleSpecifierCache?.(); constant
969 …le, toFile, preferences, packageJsonFilter, moduleSpecifierResolutionHost, moduleSpecifierCache) ||