8 writes to StateWhenFalse
Microsoft.CodeAnalysis.CSharp (8)
FlowAnalysis\NullableWalker.cs (5)
4987
Join(ref stateWhenNotNull, ref conditionalStateWhenNotNull.
StateWhenFalse
);
5736
LearnFromNonNullTest(slot, ref stateWhenNotNull.
StateWhenFalse
);
11519
Join(ref stateWhenNotNull, ref conditionalStateWhenNotNull.
StateWhenFalse
);
12169
Join(ref StateWhenFalse, ref otherIsConditional ? ref other.
StateWhenFalse
: ref other.State);
12186
Join(ref state, ref conditionalState.
StateWhenFalse
);
FlowAnalysis\NullableWalker_Patterns.cs (3)
347
StateWhenFalse
= stateWhenFalse.Clone();
354
StateWhenTrue =
StateWhenFalse
= default;
815
Join(ref result.
StateWhenFalse
, ref state);
4 references to StateWhenFalse
Microsoft.CodeAnalysis.CSharp (4)
FlowAnalysis\NullableWalker.cs (2)
4982
stateWhenNotNull = boolValue ? conditionalStateWhenNotNull.StateWhenTrue : conditionalStateWhenNotNull.
StateWhenFalse
;
12198
SetConditionalState(conditionalState.StateWhenTrue, conditionalState.
StateWhenFalse
);
FlowAnalysis\NullableWalker_Patterns.cs (2)
369
? new PossiblyConditionalState(StateWhenTrue,
StateWhenFalse
)
425
SetConditionalState(nodeState.StateWhenTrue, nodeState.
StateWhenFalse
);