5 writes to FalseBranch
Microsoft.CodeAnalysis.CSharp (5)
Binder\DecisionDagBuilder.cs (5)
977
state.
FalseBranch
= uniquifyState(stateWhenFails, state.RemainingValues);
996
state.
FalseBranch
= uniquifyState(whenFalseDecisions, whenFalseValues);
1059
state.
FalseBranch
= falseBranch = falseBranch.TrueBranch;
2179
FalseBranch
= null;
2200
this.
FalseBranch
= null;
12 references to FalseBranch
Microsoft.CodeAnalysis.CSharp (12)
Binder\DecisionDagBuilder.cs (12)
951
RoslynDebug.Assert(state.
FalseBranch
== null);
1031
DagState? falseBranch = state.
FalseBranch
;
1065
Debug.Assert(state.
FalseBranch
is null);
1234
RoslynDebug.Assert(state.
FalseBranch
is { });
1238
BoundDecisionDagNode? whenFalse = state.
FalseBranch
.Dag;
1258
RoslynDebug.Assert(state.
FalseBranch
== null);
1265
BoundDecisionDagNode? whenFalse = state.
FalseBranch
!.Dag;
1898
builder.AddIfNotNull(state.
FalseBranch
);
1969
if (state.
FalseBranch
!= null)
1971
result.AppendLine($" FalseBranch: {stateIdentifierMap[state.
FalseBranch
]}");
2117
/// If this dictionary is mutated after <see cref="TrueBranch"/>, <see cref="
FalseBranch
"/>,
2161
Debug.Assert(dagState.
FalseBranch
is null);