4 writes to FalseBranch
Microsoft.CodeAnalysis.CSharp (4)
Binder\DecisionDagBuilder.cs (4)
924
state.
FalseBranch
= uniquifyState(stateWhenFails, state.RemainingValues);
956
state.
FalseBranch
= uniquifyState(whenFalseDecisions, whenFalseValues);
1909
FalseBranch
= null;
1930
this.
FalseBranch
= null;
10 references to FalseBranch
Microsoft.CodeAnalysis.CSharp (10)
Binder\DecisionDagBuilder.cs (10)
898
RoslynDebug.Assert(state.
FalseBranch
== null);
1025
RoslynDebug.Assert(state.
FalseBranch
is { });
1029
BoundDecisionDagNode? whenFalse = state.
FalseBranch
.Dag;
1049
RoslynDebug.Assert(state.
FalseBranch
== null);
1056
BoundDecisionDagNode? whenFalse = state.
FalseBranch
!.Dag;
1628
builder.AddIfNotNull(state.
FalseBranch
);
1699
if (state.
FalseBranch
!= null)
1701
result.AppendLine($" FalseBranch: {stateIdentifierMap[state.
FalseBranch
]}");
1847
/// If this dictionary is mutated after <see cref="TrueBranch"/>, <see cref="
FalseBranch
"/>,
1891
Debug.Assert(dagState.
FalseBranch
is null);