2 instantiations of MetadataInfo
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\SymbolTree\SymbolTreeInfoCacheService.cs (2)
91return _peReferenceToInfo.GetOrAdd(reference, new MetadataInfo(info, referencingProjects)).SymbolTreeInfo; 204metadataInfo = new MetadataInfo(info, metadataInfo.ReferencingProjects ?? new HashSet<ProjectId>());
3 references to MetadataInfo
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\SymbolTree\SymbolTreeInfoCacheService.cs (3)
30private readonly ConcurrentDictionary<PortableExecutableReference, MetadataInfo> _peReferenceToInfo = new(); 79if (_peReferenceToInfo.TryGetValue(reference, out var metadataInfo)) 195if (!_peReferenceToInfo.TryGetValue(reference, out var metadataInfo) ||