10 writes to State
Microsoft.CodeAnalysis.CSharp (10)
FlowAnalysis\NullableWalker.cs (4)
6230LearnFromNonNullTest(slot, ref stateWhenNotNull.State); 13312Join(ref StateWhenTrue, ref otherIsConditional ? ref other.StateWhenTrue : ref other.State); 13313Join(ref StateWhenFalse, ref otherIsConditional ? ref other.StateWhenFalse : ref other.State); 13318Join(ref State, ref other.State);
FlowAnalysis\NullableWalker_Patterns.cs (6)
349State = default; 356State = state.Clone(); 894Join(ref this.StateWhenTrue, ref stateAndReachable.state.State); 895Join(ref this.StateWhenFalse, ref stateAndReachable.state.State); 904Join(ref this.State, ref stateAndReachable.state.State); 927Join(ref result.State, ref state);
6 references to State
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\NullableWalker.cs (4)
5409stateWhenNotNull = conditionalStateWhenNotNull.State; 12656stateWhenNotNull = conditionalStateWhenNotNull.State; 13326return conditionalState.State.Clone(); 13338SetState(conditionalState.State);
FlowAnalysis\NullableWalker_Patterns.cs (2)
370: new PossiblyConditionalState(State); 430SetState(nodeState.State);