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);
1913
FalseBranch
= null;
1934
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;
1632
builder.AddIfNotNull(state.
FalseBranch
);
1703
if (state.
FalseBranch
!= null)
1705
result.AppendLine($" FalseBranch: {stateIdentifierMap[state.
FalseBranch
]}");
1851
/// If this dictionary is mutated after <see cref="TrueBranch"/>, <see cref="
FalseBranch
"/>,
1895
Debug.Assert(dagState.
FalseBranch
is null);