4 writes to FalseBranch
Microsoft.CodeAnalysis.CSharp (4)
Binder\DecisionDagBuilder.cs (4)
970
state.
FalseBranch
= uniquifyState(stateWhenFails, state.RemainingValues);
1002
state.
FalseBranch
= uniquifyState(whenFalseDecisions, whenFalseValues);
1955
FalseBranch
= null;
1976
this.
FalseBranch
= null;
10 references to FalseBranch
Microsoft.CodeAnalysis.CSharp (10)
Binder\DecisionDagBuilder.cs (10)
944
RoslynDebug.Assert(state.
FalseBranch
== null);
1071
RoslynDebug.Assert(state.
FalseBranch
is { });
1075
BoundDecisionDagNode? whenFalse = state.
FalseBranch
.Dag;
1095
RoslynDebug.Assert(state.
FalseBranch
== null);
1102
BoundDecisionDagNode? whenFalse = state.
FalseBranch
!.Dag;
1674
builder.AddIfNotNull(state.
FalseBranch
);
1745
if (state.
FalseBranch
!= null)
1747
result.AppendLine($" FalseBranch: {stateIdentifierMap[state.
FalseBranch
]}");
1893
/// If this dictionary is mutated after <see cref="TrueBranch"/>, <see cref="
FalseBranch
"/>,
1937
Debug.Assert(dagState.
FalseBranch
is null);