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)
160if (rootFrame.knownStates == null) 254if (frame.knownStates != null) 257var sections = from ft in frame.knownStates 384Debug.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;