10 writes to State
Microsoft.CodeAnalysis.CSharp (10)
FlowAnalysis\NullableWalker_Patterns.cs (6)
352State = default; 359State = state.Clone(); 903Join(ref this.StateWhenTrue, ref stateAndReachable.state.State); 904Join(ref this.StateWhenFalse, ref stateAndReachable.state.State); 913Join(ref this.State, ref stateAndReachable.state.State); 941Join(ref result.State, ref state);
FlowAnalysis\NullableWalker.cs (4)
6342LearnFromNonNullTest(slot, ref stateWhenNotNull.State); 13901Join(ref StateWhenTrue, ref otherIsConditional ? ref other.StateWhenTrue : ref other.State); 13902Join(ref StateWhenFalse, ref otherIsConditional ? ref other.StateWhenFalse : ref other.State); 13907Join(ref State, ref other.State);
6 references to State
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\NullableWalker_Patterns.cs (2)
373: new PossiblyConditionalState(State); 434SetState(nodeState.State);
FlowAnalysis\NullableWalker.cs (4)
5519stateWhenNotNull = conditionalStateWhenNotNull.State; 13193stateWhenNotNull = conditionalStateWhenNotNull.State; 13915return conditionalState.State.Clone(); 13927SetState(conditionalState.State);