1 write to knownStates
Microsoft.CodeAnalysis.CSharp (1)
Lowering\IteratorRewriter\IteratorMethodToStateMachineRewriter.IteratorFinallyFrame.cs (1)
84this.knownStates = knownStates = new Dictionary<StateMachineState, IteratorFinallyFrame>();
5 references to knownStates
Microsoft.CodeAnalysis.CSharp (5)
Lowering\IteratorRewriter\IteratorMethodToStateMachineRewriter.cs (4)
161if (rootFrame.knownStates == null) 262if (frame.knownStates != null) 265var sections = from ft in frame.knownStates 392Debug.Assert(frame.parent.knownStates.ContainsValue(frame), "parent must be aware about states in the child frame");
Lowering\IteratorRewriter\IteratorMethodToStateMachineRewriter.IteratorFinallyFrame.cs (1)
81var knownStates = this.knownStates;