10 writes to State
Microsoft.CodeAnalysis.CSharp (10)
FlowAnalysis\NullableWalker_Patterns.cs (6)
352
State
= default;
359
State
= state.Clone();
903
Join(ref this.StateWhenTrue, ref stateAndReachable.state.
State
);
904
Join(ref this.StateWhenFalse, ref stateAndReachable.state.
State
);
913
Join(ref this.State, ref stateAndReachable.state.
State
);
941
Join(ref result.
State
, ref state);
FlowAnalysis\NullableWalker.cs (4)
6342
LearnFromNonNullTest(slot, ref stateWhenNotNull.
State
);
13901
Join(ref StateWhenTrue, ref otherIsConditional ? ref other.StateWhenTrue : ref other.
State
);
13902
Join(ref StateWhenFalse, ref otherIsConditional ? ref other.StateWhenFalse : ref other.
State
);
13907
Join(ref State, ref other.
State
);
6 references to State
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\NullableWalker_Patterns.cs (2)
373
: new PossiblyConditionalState(
State
);
434
SetState(nodeState.
State
);
FlowAnalysis\NullableWalker.cs (4)
5519
stateWhenNotNull = conditionalStateWhenNotNull.
State
;
13193
stateWhenNotNull = conditionalStateWhenNotNull.
State
;
13915
return conditionalState.
State
.Clone();
13927
SetState(conditionalState.
State
);