1 instantiation of ActiveStatementsMap
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\ActiveStatementsMap.cs (1)
22new(ImmutableDictionary<string, ImmutableArray<ActiveStatement>>.Empty,
20 references to ActiveStatementsMap
Microsoft.CodeAnalysis.Features (15)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
515AsyncLazy<ActiveStatementsMap> lazyOldActiveStatementMap,
EditAndContinue\ActiveStatementsMap.cs (2)
21public static readonly ActiveStatementsMap Empty = 59public static ActiveStatementsMap Create(
EditAndContinue\EditAndContinueDocumentAnalysesCache.cs (2)
24internal sealed class EditAndContinueDocumentAnalysesCache(AsyncLazy<ActiveStatementsMap> baseActiveStatements, AsyncLazy<EditAndContinueCapabilities> capabilities) 28private readonly AsyncLazy<ActiveStatementsMap> _baseActiveStatements = baseActiveStatements;
EditAndContinue\EditSession.cs (8)
75internal readonly AsyncLazy<ActiveStatementsMap> BaseActiveStatements; 92AsyncLazy<ActiveStatementsMap>? lazyActiveStatementMap, 106: AsyncLazy.Create(ActiveStatementsMap.Empty)); 245private async Task<ActiveStatementsMap> GetBaseActiveStatementsAsync(CancellationToken cancellationToken) 251return ActiveStatementsMap.Create(debugInfos, NonRemappableRegions); 255return ActiveStatementsMap.Empty; 610ActiveStatementsMap baseActiveStatements, 1179ActiveStatementsMap oldActiveStatementMap,
EditAndContinue\IEditAndContinueAnalyzer.cs (1)
18AsyncLazy<ActiveStatementsMap> lazyBaseActiveStatements,
EditAndContinue\MemberBody.cs (1)
49var range = ActiveStatementsMap.GetSpansStartingInSpan(
Microsoft.CodeAnalysis.Features.UnitTests (5)
EditAndContinue\ActiveStatementsMapTests.cs (5)
141var map = ActiveStatementsMap.Create(debugInfos, remapping: ImmutableDictionary<ManagedMethodId, ImmutableArray<NonRemappableRegion>>.Empty); 191var map = ActiveStatementsMap.Create(debugInfos, remapping: ImmutableDictionary<ManagedMethodId, ImmutableArray<NonRemappableRegion>>.Empty); 249var map = ActiveStatementsMap.Create(debugInfos, remapping.ToImmutable()); 306var map = ActiveStatementsMap.Create(debugInfos, remapping); 344var map = ActiveStatementsMap.Create(debugInfos, remapping);