10 writes to State
Microsoft.CodeAnalysis.CSharp (10)
FlowAnalysis\NullableWalker.cs (4)
5279
LearnFromNonNullTest(slot, ref stateWhenNotNull.
State
);
11252
Join(ref StateWhenTrue, ref otherIsConditional ? ref other.StateWhenTrue : ref other.
State
);
11253
Join(ref StateWhenFalse, ref otherIsConditional ? ref other.StateWhenFalse : ref other.
State
);
11258
Join(ref State, ref other.
State
);
FlowAnalysis\NullableWalker_Patterns.cs (6)
311
State
= default;
318
State
= state.Clone();
745
Join(ref this.StateWhenTrue, ref stateAndReachable.state.
State
);
746
Join(ref this.StateWhenFalse, ref stateAndReachable.state.
State
);
755
Join(ref this.State, ref stateAndReachable.state.
State
);
778
Join(ref result.
State
, ref state);
6 references to State
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\NullableWalker.cs (4)
4549
stateWhenNotNull = conditionalStateWhenNotNull.
State
;
10598
stateWhenNotNull = conditionalStateWhenNotNull.
State
;
11266
return conditionalState.
State
.Clone();
11278
SetState(conditionalState.
State
);
FlowAnalysis\NullableWalker_Patterns.cs (2)
332
: new PossiblyConditionalState(
State
);
391
SetState(nodeState.
State
);