1 implementation of Reanalyze
Microsoft.CodeAnalysis.Features (1)
SolutionCrawler\SolutionCrawlerService.cs (1)
33public void Reanalyze(Workspace workspace, IIncrementalAnalyzer analyzer, IEnumerable<ProjectId>? projectIds = null, IEnumerable<DocumentId>? documentIds = null, bool highPriority = false)
4 references to Reanalyze
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
SolutionCrawler\WorkCoordinatorTests.cs (1)
1837service?.Reanalyze(_workspace, this, projectIds: null, documentIds: null, highPriority: false);
Microsoft.CodeAnalysis.Features (1)
ExternalAccess\UnitTesting\API\UnitTestingIncrementalAnalyzerProvider.cs (1)
35solutionCrawlerService.Reanalyze(_workspace, analyzer, projectIds: null, documentIds: null, highPriority: false);
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Features\Diagnostics\DiagnosticAnalyzerService.cs (1)
67service.Reanalyze(workspace, analyzer, projectIds, documentIds, highPriority);
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer.cs (1)
82service?.Reanalyze(Workspace, this, projectIds: null, documentIds: null, highPriority: false);