Implemented interface member:
16 references to Values
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\EditAndContinueService.cs (3)
146=> ((IEnumerable<TextDocumentState>)projectState.DocumentStates.States.Values).Concat( 147projectState.AdditionalDocumentStates.States.Values).Concat( 148projectState.AnalyzerConfigDocumentStates.States.Values);
Microsoft.CodeAnalysis.Workspaces (13)
Diagnostics\Extensions.cs (1)
381var frozenGeneratedDocuments = solution.CompilationState.FrozenSourceGeneratedDocumentStates.States.Values
FindSymbols\SymbolTree\SymbolTreeInfo_Source.cs (1)
95var textChecksumsTasks = projectState.DocumentStates.States.Values.OrderBy(state => state.FilePath, StringComparer.Ordinal).Select(async state =>
Workspace\Solution\Project.cs (1)
321return generatedDocumentStates.States.Values.Select(state =>
Workspace\Solution\ProjectState.AnalyzerConfigOptionsCache.cs (1)
41var tasks = analyzerConfigDocumentStates.States.Values.Select(a => a.GetAnalyzerConfigAsync(cancellationToken));
Workspace\Solution\SolutionCompilationState.CompilationTracker.CompilationTrackerState.cs (2)
103foreach (var generatedDocument in generatorInfo.Documents.States.Values) 203foreach (var generatedDocument in generatorInfo.Documents.States.Values)
Workspace\Solution\SolutionCompilationState.cs (1)
1368var projectIdsToUnfreeze = FrozenSourceGeneratedDocumentStates.States.Values
Workspace\Solution\SolutionCompilationState.RegularCompilationTracker.cs (1)
841var syntaxTrees = generatorInfo.Documents.States.Values.Select(state => state.GetSyntaxTree(cancellationToken));
Workspace\Solution\SolutionCompilationState.RegularCompilationTracker_Generators.cs (3)
43var generatedSyntaxTrees = await generatorInfo.Documents.States.Values.SelectAsArrayAsync( 266await newGeneratedDocuments.States.Values.SelectAsArrayAsync( 424await newGeneratedDocuments.States.Values.SelectAsArrayAsync(
Workspace\Solution\TextDocumentStates.cs (2)
274=> !States.Values.SequenceEqual(oldStates.States.Values);