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