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