1 implementation of GetSpansAsync
Microsoft.CodeAnalysis.EditorFeatures (1)
EditAndContinue\ActiveStatementTrackingService.cs (1)
92
public ValueTask<ImmutableArray<ActiveStatementSpan>>
GetSpansAsync
(Solution solution, DocumentId? documentId, string filePath, CancellationToken cancellationToken)
3 references to GetSpansAsync
Microsoft.CodeAnalysis.EditorFeatures (3)
EditAndContinue\EditAndContinueDiagnosticAnalyzer.cs (1)
85
return await trackingService.
GetSpansAsync
(compileTimeSolution, documentId, filePath, cancellationToken).ConfigureAwait(false);
EditAndContinue\EditAndContinueLanguageService.cs (2)
284
return new((documentId, filePath, cancellationToken) => service.
GetSpansAsync
(solution, documentId, filePath, cancellationToken));
354
activeStatementTrackingService.
GetSpansAsync
(solution, documentId, filePath, cancellationToken));