10 references to ActiveStatementLineSpan
Microsoft.CodeAnalysis.Features (10)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (5)
509ImmutableArray<ActiveStatementLineSpan> newActiveStatementSpans, 829ImmutableArray<ActiveStatementLineSpan> newActiveStatementSpans, 993ImmutableArray<ActiveStatementLineSpan> newActiveStatementSpans, 1365private static bool TryGetTrackedStatement(ImmutableArray<ActiveStatementLineSpan> activeStatementSpans, ActiveStatementId id, SourceText text, MemberBody body, [NotNullWhen(true)] out SyntaxNode? trackedStatement, out int trackedStatementPart) 2558ImmutableArray<ActiveStatementLineSpan> newActiveStatementSpans,
EditAndContinue\EditAndContinueDocumentAnalysesCache.cs (4)
27private readonly Dictionary<DocumentId, (AsyncLazy<DocumentAnalysisResults> results, Project oldProject, Document? newDocument, ImmutableArray<ActiveStatementLineSpan> activeStatementSpans)> _analyses = []; 105private async Task<ImmutableArray<ActiveStatementLineSpan>> GetLatestUnmappedActiveStatementSpansAsync(Document? oldDocument, Document? newDocument, ActiveStatementSpanProvider newActiveStatementSpanProvider, CancellationToken cancellationToken) 140using var _2 = ArrayBuilder<ActiveStatementLineSpan>.GetInstance(out var activeStatementSpansBuilder); 175private AsyncLazy<DocumentAnalysisResults> GetDocumentAnalysisNoLock(Project oldProject, Project newProject, Document? oldDocument, Document? newDocument, ImmutableArray<ActiveStatementLineSpan> activeStatementSpans)
EditAndContinue\IEditAndContinueAnalyzer.cs (1)
21ImmutableArray<ActiveStatementLineSpan> newActiveStatementSpans,