3 implementations of Reanalyze
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Diagnostics\MockDiagnosticAnalyzerService.cs (1)
44public void Reanalyze(Workspace workspace, IEnumerable<ProjectId>? projectIds = null, IEnumerable<DocumentId>? documentIds = null, bool highPriority = false)
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Diagnostics\DiagnosticAnalyzerService.cs (1)
62public void Reanalyze(Workspace workspace, IEnumerable<ProjectId>? projectIds = null, IEnumerable<DocumentId>? documentIds = null, bool highPriority = false)
Microsoft.VisualStudio.LanguageServices.UnitTests (1)
Diagnostics\ExternalDiagnosticUpdateSourceTests.vb (1)
667Public Sub Reanalyze(workspace As Workspace, Optional projectIds As IEnumerable(Of ProjectId) = Nothing, Optional documentIds As IEnumerable(Of DocumentId) = Nothing, Optional highPriority As Boolean = False) Implements IDiagnosticAnalyzerService.Reanalyze
11 references to Reanalyze
Microsoft.CodeAnalysis.EditorFeatures (1)
RenameTracking\RenameTrackingTaggerProvider.StateMachine.cs (1)
243_diagnosticAnalyzerService?.Reanalyze(
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Diagnostics\FSharpDiagnosticAnalyzerService.cs (1)
30_delegatee.Reanalyze(workspace, projectIds, documentIds, highPriority);
Microsoft.CodeAnalysis.Features (5)
EditAndContinue\Remote\RemoteDebuggingSessionProxy.cs (4)
60diagnosticService.Reanalyze(_workspace, documentIds: documentsToReanalyze); 88diagnosticService.Reanalyze(_workspace, documentIds: designTimeDocumentsToReanalyze); 166diagnosticService.Reanalyze(_workspace, documentIds: rudeEdits.Select(d => d.DocumentId)); 193diagnosticService.Reanalyze(_workspace, documentIds: documentsToReanalyze);
ExternalAccess\VSTypeScript\VSTypeScriptDiagnosticAnalyzerService.cs (1)
26=> _service.Reanalyze(workspace, projectIds, documentIds, highPriority);
Microsoft.VisualStudio.LanguageServices (3)
TableDataSource\Suppression\VisualStudioDiagnosticListTableCommandHandler.cs (1)
221_diagnosticService.Reanalyze(_workspace, documentIds: SpecializedCollections.SingletonEnumerable(selectedDiagnostic.DocumentId), highPriority: true);
TableDataSource\Suppression\VisualStudioSuppressionFixService.cs (1)
406_diagnosticService.Reanalyze(_workspace, documentIds: reanalyzeDocuments, highPriority: true);
Venus\ContainedLanguage.cs (1)
174_diagnosticAnalyzerService.Reanalyze(this.Workspace, documentIds: SpecializedCollections.SingletonEnumerable(this.ContainedDocument.Id));
Microsoft.VisualStudio.LanguageServices.UnitTests (1)
Diagnostics\ExternalDiagnosticUpdateSourceTests.vb (1)
667Public Sub Reanalyze(workspace As Workspace, Optional projectIds As IEnumerable(Of ProjectId) = Nothing, Optional documentIds As IEnumerable(Of DocumentId) = Nothing, Optional highPriority As Boolean = False) Implements IDiagnosticAnalyzerService.Reanalyze