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