10 writes to StateWhenFalse
Microsoft.CodeAnalysis.CSharp (10)
FlowAnalysis\NullableWalker.cs (5)
5492Join(ref stateWhenNotNull, ref conditionalStateWhenNotNull.StateWhenFalse); 6300LearnFromNonNullTest(slot, ref stateWhenNotNull.StateWhenFalse); 13075Join(ref stateWhenNotNull, ref conditionalStateWhenNotNull.StateWhenFalse); 13778Join(ref StateWhenFalse, ref otherIsConditional ? ref other.StateWhenFalse : ref other.State); 13795Join(ref state, ref conditionalState.StateWhenFalse);
FlowAnalysis\NullableWalker_Patterns.cs (5)
347StateWhenFalse = stateWhenFalse.Clone(); 354StateWhenTrue = StateWhenFalse = default; 890Join(ref this.StateWhenFalse, ref stateAndReachable.state.StateWhenFalse); 901Join(ref this.StateWhenFalse, ref stateAndReachable.state.StateWhenFalse); 924Join(ref result.StateWhenFalse, ref state);
4 references to StateWhenFalse
Microsoft.CodeAnalysis.CSharp (4)
FlowAnalysis\NullableWalker.cs (2)
5487stateWhenNotNull = boolValue ? conditionalStateWhenNotNull.StateWhenTrue : conditionalStateWhenNotNull.StateWhenFalse; 13807SetConditionalState(conditionalState.StateWhenTrue, conditionalState.StateWhenFalse);
FlowAnalysis\NullableWalker_Patterns.cs (2)
369? new PossiblyConditionalState(StateWhenTrue, StateWhenFalse) 426SetConditionalState(nodeState.StateWhenTrue, nodeState.StateWhenFalse);