5 writes to FalseBranch
Microsoft.CodeAnalysis.CSharp (5)
Binder\DecisionDagBuilder.cs (5)
1400
state.
FalseBranch
= uniquifyState(stateWhenFails, state.RemainingValues);
1419
state.
FalseBranch
= uniquifyState(whenFalseDecisions, whenFalseValues);
1482
state.
FalseBranch
= falseBranch = falseBranch.TrueBranch;
3089
FalseBranch
= null;
3110
this.
FalseBranch
= null;
12 references to FalseBranch
Microsoft.CodeAnalysis.CSharp (12)
Binder\DecisionDagBuilder.cs (12)
1374
RoslynDebug.Assert(state.
FalseBranch
== null);
1454
DagState? falseBranch = state.
FalseBranch
;
1488
Debug.Assert(state.
FalseBranch
is null);
1657
RoslynDebug.Assert(state.
FalseBranch
is { });
1661
BoundDecisionDagNode? whenFalse = state.
FalseBranch
.Dag;
1681
RoslynDebug.Assert(state.
FalseBranch
== null);
1688
BoundDecisionDagNode? whenFalse = state.
FalseBranch
!.Dag;
2794
builder.AddIfNotNull(state.
FalseBranch
);
2879
if (state.
FalseBranch
!= null)
2881
result.AppendLine($" FalseBranch: {stateIdentifierMap[state.
FalseBranch
]}");
3027
/// If this dictionary is mutated after <see cref="TrueBranch"/>, <see cref="
FalseBranch
"/>,
3071
Debug.Assert(dagState.
FalseBranch
is null);