1 write to StateMachineStates
Microsoft.CodeAnalysis (1)
Emit\EditAndContinueMethodDebugInformation.cs (1)
40StateMachineStates = stateMachineStates;
12 references to StateMachineStates
Microsoft.CodeAnalysis (12)
CodeGen\StateMachineStateDebugInfo.cs (2)
36/// For 1st generation EnC delta, this is calculated by examining the <see cref="EditAndContinueMethodDebugInformation.StateMachineStates"/> stored in the baseline metadata. 45/// 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)
256MakeStateMachineStateMap(debugInfo.StateMachineStates, out stateMachineStateMap); 258if (!debugInfo.StateMachineStates.IsDefaultOrEmpty) 260firstUnusedIncreasingStateMachineState = debugInfo.StateMachineStates.Max(s => s.StateNumber) + 1; 261firstUnusedDecreasingStateMachineState = debugInfo.StateMachineStates.Min(s => s.StateNumber) - 1;
Emit\EditAndContinueMethodDebugInformation.cs (4)
350writer.WriteCompressedInteger(StateMachineStates.Length); 351if (StateMachineStates.Length > 0) 356int syntaxOffsetBaseline = Math.Min(StateMachineStates.Min(state => state.SyntaxOffset), 0); 359foreach (StateMachineStateDebugInfo state in StateMachineStates)
PEWriter\CustomDebugInfoWriter.cs (1)
155if (!debugInfo.StateMachineStates.IsDefaultOrEmpty)
PEWriter\MetadataWriter.PortablePdb.cs (1)
834if (!encInfo.StateMachineStates.IsDefaultOrEmpty)