3 writes to _dispatches
Microsoft.CodeAnalysis.CSharp (3)
Lowering\StateMachineRewriter\MethodToStateMachineRewriter.cs (3)
234_dispatches ??= new Dictionary<LabelSymbol, List<StateMachineState>>(); 880_dispatches = null; 897_dispatches = oldDispatches;
6 references to _dispatches
Microsoft.CodeAnalysis.CSharp (6)
Lowering\StateMachineRewriter\MethodToStateMachineRewriter.cs (6)
237_dispatches.Add(resumeLabel, new List<StateMachineState> { stateNumber }); 241/// Generates code that switches over states and jumps to the target labels listed in <see cref="_dispatches"/>. 248var sections = from kv in _dispatches 878var oldDispatches = _dispatches; 884if (_dispatches != null) 894oldDispatches.Add(dispatchLabel, new List<StateMachineState>(from kv in _dispatches.Values from n in kv orderby n select n));