10 writes to StateWhenFalse
Microsoft.CodeAnalysis.CSharp (10)
FlowAnalysis\NullableWalker.cs (5)
4560Join(ref stateWhenNotNull, ref conditionalStateWhenNotNull.StateWhenFalse); 5275LearnFromNonNullTest(slot, ref stateWhenNotNull.StateWhenFalse); 10603Join(ref stateWhenNotNull, ref conditionalStateWhenNotNull.StateWhenFalse); 11253Join(ref StateWhenFalse, ref otherIsConditional ? ref other.StateWhenFalse : ref other.State); 11270Join(ref state, ref conditionalState.StateWhenFalse);
FlowAnalysis\NullableWalker_Patterns.cs (5)
309StateWhenFalse = stateWhenFalse.Clone(); 316StateWhenTrue = StateWhenFalse = default; 741Join(ref this.StateWhenFalse, ref stateAndReachable.state.StateWhenFalse); 752Join(ref this.StateWhenFalse, ref stateAndReachable.state.StateWhenFalse); 775Join(ref result.StateWhenFalse, ref state);
4 references to StateWhenFalse
Microsoft.CodeAnalysis.CSharp (4)
FlowAnalysis\NullableWalker.cs (2)
4555stateWhenNotNull = boolValue ? conditionalStateWhenNotNull.StateWhenTrue : conditionalStateWhenNotNull.StateWhenFalse; 11282SetConditionalState(conditionalState.StateWhenTrue, conditionalState.StateWhenFalse);
FlowAnalysis\NullableWalker_Patterns.cs (2)
331? new PossiblyConditionalState(StateWhenTrue, StateWhenFalse) 387SetConditionalState(nodeState.StateWhenTrue, nodeState.StateWhenFalse);