3 writes to FalseBranch
Microsoft.CodeAnalysis.CSharp (3)
Binder\DecisionDagBuilder.cs (3)
870
state.
FalseBranch
= uniqifyState(stateWhenFails, state.RemainingValues);
904
state.
FalseBranch
= uniqifyState(whenFalseDecisions, whenFalseValues);
1792
this.
FalseBranch
= null;
12 references to FalseBranch
Microsoft.CodeAnalysis.CSharp (12)
Binder\DecisionDagBuilder.cs (12)
844
RoslynDebug.Assert(state.
FalseBranch
== null);
974
RoslynDebug.Assert(state.
FalseBranch
is { });
978
BoundDecisionDagNode? whenFalse = state.
FalseBranch
.Dag;
998
RoslynDebug.Assert(state.
FalseBranch
== null);
1005
BoundDecisionDagNode? whenFalse = state.
FalseBranch
!.Dag;
1580
if (state.TrueBranch != null && state.
FalseBranch
!= null)
1582
return ImmutableArray.Create(state.
FalseBranch
, state.TrueBranch);
1588
else if (state.
FalseBranch
!= null)
1590
return ImmutableArray.Create(state.
FalseBranch
);
1666
if (state.
FalseBranch
!= null)
1668
result.AppendLine($" FalseBranch: {stateIdentifierMap[state.
FalseBranch
]}");
1746
/// If this dictionary is mutated after <see cref="TrueBranch"/>, <see cref="
FalseBranch
"/>,