1 instantiation of StateMachineStateDebugInfo
Microsoft.CodeAnalysis (1)
Emit\EditAndContinueMethodDebugInformation.cs (1)
349mapBuilder.Add(new StateMachineStateDebugInfo(syntaxOffset, new AwaitDebugId((byte)relativeOrdinal), (StateMachineState)stateNumber));
9 references to StateMachineStateDebugInfo
Microsoft.CodeAnalysis (9)
CodeGen\StateMachineStateDebugInfo.cs (3)
25public readonly ImmutableArray<StateMachineStateDebugInfo> States; 45private StateMachineStatesDebugInfo(ImmutableArray<StateMachineStateDebugInfo> states, StateMachineState? firstUnusedIncreasingStateMachineState, StateMachineState? firstUnusedDecreasingStateMachineState) 52public static StateMachineStatesDebugInfo Create(VariableSlotAllocator? variableSlotAllocator, ImmutableArray<StateMachineStateDebugInfo> stateInfos)
Emit\EditAndContinue\DefinitionMap.cs (1)
486private static IReadOnlyDictionary<(int syntaxOffset, AwaitDebugId debugId), StateMachineState>? MakeStateMachineStateMap(ImmutableArray<StateMachineStateDebugInfo> debugInfos)
Emit\EditAndContinueMethodDebugInformation.cs (5)
25internal readonly ImmutableArray<StateMachineStateDebugInfo> StateMachineStates; 32ImmutableArray<StateMachineStateDebugInfo> stateMachineStates) 309private static unsafe ImmutableArray<StateMachineStateDebugInfo> UncompressStateMachineStates(ImmutableArray<byte> compressedStateMachineStates) 316var mapBuilder = ArrayBuilder<StateMachineStateDebugInfo>.GetInstance(); 375foreach (StateMachineStateDebugInfo state in StateMachineStates.OrderBy(s => s.SyntaxOffset).ThenBy(s => s.AwaitId.RelativeStateOrdinal))