3 references to GetCachedCopilotDiagnosticsAsync
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineDiagnostics\AbstractDiagnosticsTaggerProvider.SingleDiagnosticKindPullTaggerProvider.cs (1)
141
var copilotDiagnostics = await document.
GetCachedCopilotDiagnosticsAsync
(requestedSpan.Span.ToTextSpan(), cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Features (1)
CodeFixes\Service\CodeFixService.cs (1)
258
return await document.
GetCachedCopilotDiagnosticsAsync
(range, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Diagnostics\DiagnosticSources\DocumentDiagnosticSource.cs (1)
40
var copilotDiagnostics = await Document.
GetCachedCopilotDiagnosticsAsync
(span: null, cancellationToken).ConfigureAwait(false);