10 writes to State
Microsoft.CodeAnalysis.CSharp (10)
FlowAnalysis\NullableWalker.cs (4)
5279LearnFromNonNullTest(slot, ref stateWhenNotNull.State); 11252Join(ref StateWhenTrue, ref otherIsConditional ? ref other.StateWhenTrue : ref other.State); 11253Join(ref StateWhenFalse, ref otherIsConditional ? ref other.StateWhenFalse : ref other.State); 11258Join(ref State, ref other.State);
FlowAnalysis\NullableWalker_Patterns.cs (6)
311State = default; 318State = state.Clone(); 745Join(ref this.StateWhenTrue, ref stateAndReachable.state.State); 746Join(ref this.StateWhenFalse, ref stateAndReachable.state.State); 755Join(ref this.State, ref stateAndReachable.state.State); 778Join(ref result.State, ref state);
6 references to State
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\NullableWalker.cs (4)
4549stateWhenNotNull = conditionalStateWhenNotNull.State; 10598stateWhenNotNull = conditionalStateWhenNotNull.State; 11266return conditionalState.State.Clone(); 11278SetState(conditionalState.State);
FlowAnalysis\NullableWalker_Patterns.cs (2)
332: new PossiblyConditionalState(State); 391SetState(nodeState.State);