10 writes to StateWhenFalse
Microsoft.CodeAnalysis.CSharp (10)
FlowAnalysis\NullableWalker.cs (5)
5532Join(ref stateWhenNotNull, ref conditionalStateWhenNotNull.StateWhenFalse); 6340LearnFromNonNullTest(slot, ref stateWhenNotNull.StateWhenFalse); 13130Join(ref stateWhenNotNull, ref conditionalStateWhenNotNull.StateWhenFalse); 13834Join(ref StateWhenFalse, ref otherIsConditional ? ref other.StateWhenFalse : ref other.State); 13851Join(ref state, ref conditionalState.StateWhenFalse);
FlowAnalysis\NullableWalker_Patterns.cs (5)
349StateWhenFalse = stateWhenFalse.Clone(); 356StateWhenTrue = StateWhenFalse = default; 892Join(ref this.StateWhenFalse, ref stateAndReachable.state.StateWhenFalse); 903Join(ref this.StateWhenFalse, ref stateAndReachable.state.StateWhenFalse); 926Join(ref result.StateWhenFalse, ref state);
4 references to StateWhenFalse
Microsoft.CodeAnalysis.CSharp (4)
FlowAnalysis\NullableWalker.cs (2)
5527stateWhenNotNull = boolValue ? conditionalStateWhenNotNull.StateWhenTrue : conditionalStateWhenNotNull.StateWhenFalse; 13863SetConditionalState(conditionalState.StateWhenTrue, conditionalState.StateWhenFalse);
FlowAnalysis\NullableWalker_Patterns.cs (2)
371? new PossiblyConditionalState(StateWhenTrue, StateWhenFalse) 428SetConditionalState(nodeState.StateWhenTrue, nodeState.StateWhenFalse);