5 writes to FalseBranch
Microsoft.CodeAnalysis.CSharp (5)
Binder\DecisionDagBuilder.cs (5)
1392
state.
FalseBranch
= uniquifyState(stateWhenFails, state.RemainingValues);
1411
state.
FalseBranch
= uniquifyState(whenFalseDecisions, whenFalseValues);
1474
state.
FalseBranch
= falseBranch = falseBranch.TrueBranch;
3081
FalseBranch
= null;
3102
this.
FalseBranch
= null;
12 references to FalseBranch
Microsoft.CodeAnalysis.CSharp (12)
Binder\DecisionDagBuilder.cs (12)
1366
RoslynDebug.Assert(state.
FalseBranch
== null);
1446
DagState? falseBranch = state.
FalseBranch
;
1480
Debug.Assert(state.
FalseBranch
is null);
1649
RoslynDebug.Assert(state.
FalseBranch
is { });
1653
BoundDecisionDagNode? whenFalse = state.
FalseBranch
.Dag;
1673
RoslynDebug.Assert(state.
FalseBranch
== null);
1680
BoundDecisionDagNode? whenFalse = state.
FalseBranch
!.Dag;
2786
builder.AddIfNotNull(state.
FalseBranch
);
2871
if (state.
FalseBranch
!= null)
2873
result.AppendLine($" FalseBranch: {stateIdentifierMap[state.
FalseBranch
]}");
3019
/// If this dictionary is mutated after <see cref="TrueBranch"/>, <see cref="
FalseBranch
"/>,
3063
Debug.Assert(dagState.
FalseBranch
is null);