10 writes to StateWhenFalse
Microsoft.CodeAnalysis.CSharp (10)
FlowAnalysis\NullableWalker.cs (5)
5448Join(ref stateWhenNotNull, ref conditionalStateWhenNotNull.StateWhenFalse); 6254LearnFromNonNullTest(slot, ref stateWhenNotNull.StateWhenFalse); 12684Join(ref stateWhenNotNull, ref conditionalStateWhenNotNull.StateWhenFalse); 13381Join(ref StateWhenFalse, ref otherIsConditional ? ref other.StateWhenFalse : ref other.State); 13398Join(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)
5443stateWhenNotNull = boolValue ? conditionalStateWhenNotNull.StateWhenTrue : conditionalStateWhenNotNull.StateWhenFalse; 13410SetConditionalState(conditionalState.StateWhenTrue, conditionalState.StateWhenFalse);
FlowAnalysis\NullableWalker_Patterns.cs (2)
369? new PossiblyConditionalState(StateWhenTrue, StateWhenFalse) 426SetConditionalState(nodeState.StateWhenTrue, nodeState.StateWhenFalse);