4 instantiations of ReanalyzeScope
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
Diagnostics\DiagnosticServiceTests.vb (1)
2478Dim reanalysisScope = New SolutionCrawlerRegistrationService.ReanalyzeScope(documentIds:={missingDocumentId})
Microsoft.CodeAnalysis.Features (3)
SolutionCrawler\SolutionCrawlerRegistrationService.cs (2)
169coordinator.Reanalyze(analyzer, new ReanalyzeScope(workspace.CurrentSolution.Id), highPriority); 173coordinator.Reanalyze(analyzer, new ReanalyzeScope(projectIds, documentIds), highPriority);
SolutionCrawler\WorkCoordinator.cs (1)
86var scope = new ReanalyzeScope(_registration.GetSolutionToAnalyze().Id);
3 references to ReanalyzeScope
Microsoft.CodeAnalysis.Features (3)
SolutionCrawler\WorkCoordinator.cs (3)
86var scope = new ReanalyzeScope(_registration.GetSolutionToAnalyze().Id); 134public void Reanalyze(IIncrementalAnalyzer analyzer, ReanalyzeScope scope, bool highPriority = false) 459private async Task EnqueueWorkItemAsync(IIncrementalAnalyzer analyzer, ReanalyzeScope scope, bool highPriority)