5 writes to FalseBranch
Microsoft.CodeAnalysis.CSharp (5)
Binder\DecisionDagBuilder.cs (5)
1372
state.
FalseBranch
= uniquifyState(stateWhenFails, state.RemainingValues);
1391
state.
FalseBranch
= uniquifyState(whenFalseDecisions, whenFalseValues);
1454
state.
FalseBranch
= falseBranch = falseBranch.TrueBranch;
3061
FalseBranch
= null;
3082
this.
FalseBranch
= null;
12 references to FalseBranch
Microsoft.CodeAnalysis.CSharp (12)
Binder\DecisionDagBuilder.cs (12)
1346
RoslynDebug.Assert(state.
FalseBranch
== null);
1426
DagState? falseBranch = state.
FalseBranch
;
1460
Debug.Assert(state.
FalseBranch
is null);
1629
RoslynDebug.Assert(state.
FalseBranch
is { });
1633
BoundDecisionDagNode? whenFalse = state.
FalseBranch
.Dag;
1653
RoslynDebug.Assert(state.
FalseBranch
== null);
1660
BoundDecisionDagNode? whenFalse = state.
FalseBranch
!.Dag;
2766
builder.AddIfNotNull(state.
FalseBranch
);
2851
if (state.
FalseBranch
!= null)
2853
result.AppendLine($" FalseBranch: {stateIdentifierMap[state.
FalseBranch
]}");
2999
/// If this dictionary is mutated after <see cref="TrueBranch"/>, <see cref="
FalseBranch
"/>,
3043
Debug.Assert(dagState.
FalseBranch
is null);