5 writes to TrueBranch
Microsoft.CodeAnalysis.CSharp (5)
Binder\DecisionDagBuilder.cs (5)
989state.TrueBranch = uniquifyState(RemoveEvaluation(state.Cases, e), state.RemainingValues.SetItem(e.Target, currentValues)); 992state.TrueBranch = uniquifyState(RemoveEvaluation(state.Cases, e), state.RemainingValues); 1001state.TrueBranch = uniquifyState(whenTrueDecisions, whenTrueValues); 1954TrueBranch = null; 1975this.TrueBranch = null;
9 references to TrueBranch
Microsoft.CodeAnalysis.CSharp (9)
Binder\DecisionDagBuilder.cs (9)
943RoslynDebug.Assert(state.TrueBranch == null); 1070RoslynDebug.Assert(state.TrueBranch == null); 1093BoundDecisionDagNode? next = state.TrueBranch!.Dag; 1101BoundDecisionDagNode? whenTrue = state.TrueBranch!.Dag; 1673builder.AddIfNotNull(state.TrueBranch); 1740if (state.TrueBranch != null) 1742result.AppendLine($" TrueBranch: {stateIdentifierMap[state.TrueBranch]}"); 1893/// If this dictionary is mutated after <see cref="TrueBranch"/>, <see cref="FalseBranch"/>, 1936Debug.Assert(dagState.TrueBranch is null);