1 write to StateMachineStates
Microsoft.CodeAnalysis (1)
Emit\EditAndContinueMethodDebugInformation.cs (1)
40
StateMachineStates
= stateMachineStates;
12 references to StateMachineStates
Microsoft.CodeAnalysis (12)
CodeGen\StateMachineStateDebugInfo.cs (2)
31
/// For 1st generation EnC delta, this is calculated by examining the <see cref="EditAndContinueMethodDebugInformation.
StateMachineStates
"/> stored in the baseline metadata.
40
/// For 1st generation EnC delta, this is calculated by examining the <see cref="EditAndContinueMethodDebugInformation.
StateMachineStates
"/> stored in the baseline metadata.
Emit\EditAndContinue\DefinitionMap.cs (4)
321
stateMachineStateMap = MakeStateMachineStateMap(debugInfo.
StateMachineStates
);
323
if (!debugInfo.
StateMachineStates
.IsDefaultOrEmpty)
325
firstUnusedIncreasingStateMachineState = debugInfo.
StateMachineStates
.Max(s => s.StateNumber) + 1;
326
firstUnusedDecreasingStateMachineState = debugInfo.
StateMachineStates
.Min(s => s.StateNumber) - 1;
Emit\EditAndContinueMethodDebugInformation.cs (4)
366
writer.WriteCompressedInteger(
StateMachineStates
.Length);
367
if (
StateMachineStates
.Length > 0)
372
int syntaxOffsetBaseline = Math.Min(
StateMachineStates
.Min(state => state.SyntaxOffset), 0);
375
foreach (StateMachineStateDebugInfo state in
StateMachineStates
.OrderBy(s => s.SyntaxOffset).ThenBy(s => s.AwaitId.RelativeStateOrdinal))
PEWriter\CustomDebugInfoWriter.cs (1)
155
if (!debugInfo.
StateMachineStates
.IsDefaultOrEmpty)
PEWriter\MetadataWriter.PortablePdb.cs (1)
834
if (!encInfo.
StateMachineStates
.IsDefaultOrEmpty)