5 writes to FalseBranch
Microsoft.CodeAnalysis.CSharp (5)
Binder\DecisionDagBuilder.cs (5)
1367
state.
FalseBranch
= uniquifyState(stateWhenFails, state.RemainingValues);
1386
state.
FalseBranch
= uniquifyState(whenFalseDecisions, whenFalseValues);
1449
state.
FalseBranch
= falseBranch = falseBranch.TrueBranch;
3034
FalseBranch
= null;
3055
this.
FalseBranch
= null;
12 references to FalseBranch
Microsoft.CodeAnalysis.CSharp (12)
Binder\DecisionDagBuilder.cs (12)
1341
RoslynDebug.Assert(state.
FalseBranch
== null);
1421
DagState? falseBranch = state.
FalseBranch
;
1455
Debug.Assert(state.
FalseBranch
is null);
1624
RoslynDebug.Assert(state.
FalseBranch
is { });
1628
BoundDecisionDagNode? whenFalse = state.
FalseBranch
.Dag;
1648
RoslynDebug.Assert(state.
FalseBranch
== null);
1655
BoundDecisionDagNode? whenFalse = state.
FalseBranch
!.Dag;
2739
builder.AddIfNotNull(state.
FalseBranch
);
2824
if (state.
FalseBranch
!= null)
2826
result.AppendLine($" FalseBranch: {stateIdentifierMap[state.
FalseBranch
]}");
2972
/// If this dictionary is mutated after <see cref="TrueBranch"/>, <see cref="
FalseBranch
"/>,
3016
Debug.Assert(dagState.
FalseBranch
is null);