(directory string)
| 209 | } |
| 210 | |
| 211 | func (r *Resolver) GetPackageScopeForPath(directory string) *packagejson.InfoCacheEntry { |
| 212 | return (&resolutionState{compilerOptions: r.compilerOptions, resolver: r}).getPackageScopeForPath(directory) |
| 213 | } |
| 214 | |
| 215 | func (r *Resolver) PackageJsonCacheEntries(f func(key tspath.Path, value *packagejson.InfoCacheEntry) bool) { |
| 216 | r.caches.packageJsonInfoCache.Range(f) |
no test coverage detected