5 writes to TrueBranch
Microsoft.CodeAnalysis.CSharp (5)
Binder\DecisionDagBuilder.cs (5)
943state.TrueBranch = uniquifyState(RemoveEvaluation(state.Cases, e), state.RemainingValues.SetItem(e.Target, currentValues)); 946state.TrueBranch = uniquifyState(RemoveEvaluation(state.Cases, e), state.RemainingValues); 955state.TrueBranch = uniquifyState(whenTrueDecisions, whenTrueValues); 1912TrueBranch = null; 1933this.TrueBranch = null;
9 references to TrueBranch
Microsoft.CodeAnalysis.CSharp (9)
Binder\DecisionDagBuilder.cs (9)
897RoslynDebug.Assert(state.TrueBranch == null); 1024RoslynDebug.Assert(state.TrueBranch == null); 1047BoundDecisionDagNode? next = state.TrueBranch!.Dag; 1055BoundDecisionDagNode? whenTrue = state.TrueBranch!.Dag; 1631builder.AddIfNotNull(state.TrueBranch); 1698if (state.TrueBranch != null) 1700result.AppendLine($" TrueBranch: {stateIdentifierMap[state.TrueBranch]}"); 1851/// If this dictionary is mutated after <see cref="TrueBranch"/>, <see cref="FalseBranch"/>, 1894Debug.Assert(dagState.TrueBranch is null);