5 references to ComputeDocumentDiagnosticAnalyzerDiagnosticsAsync
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Features\Diagnostics\DocumentAnalysisExecutor.cs (1)
111
var documentDiagnostics = await
ComputeDocumentDiagnosticAnalyzerDiagnosticsAsync
(
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer.Executor.cs (4)
468
builder.AddSyntaxDiagnostics(tree, await DocumentAnalysisExecutor.
ComputeDocumentDiagnosticAnalyzerDiagnosticsAsync
(documentAnalyzer, document, AnalysisKind.Syntax, compilation, cancellationToken).ConfigureAwait(false));
469
builder.AddSemanticDiagnostics(tree, await DocumentAnalysisExecutor.
ComputeDocumentDiagnosticAnalyzerDiagnosticsAsync
(documentAnalyzer, document, AnalysisKind.Semantic, compilation, cancellationToken).ConfigureAwait(false));
473
builder.AddExternalSyntaxDiagnostics(document.Id, await DocumentAnalysisExecutor.
ComputeDocumentDiagnosticAnalyzerDiagnosticsAsync
(documentAnalyzer, document, AnalysisKind.Syntax, compilation, cancellationToken).ConfigureAwait(false));
474
builder.AddExternalSemanticDiagnostics(document.Id, await DocumentAnalysisExecutor.
ComputeDocumentDiagnosticAnalyzerDiagnosticsAsync
(documentAnalyzer, document, AnalysisKind.Semantic, compilation, cancellationToken).ConfigureAwait(false));