7 writes to Dag
Microsoft.CodeAnalysis.CSharp (7)
Binder\DecisionDagBuilder.cs (7)
1201decisionDag.RootNode.Dag = defaultDecision; 1218state.Dag = defaultDecision; 1229state.Dag = finalState(first.Syntax, first.CaseLabel, first.Bindings); 1241state.Dag = uniqifyDagNode(new BoundWhenDecisionDagNode(first.Syntax, first.Bindings, first.WhenClause, whenTrue, whenFalse)); 1259state.Dag = uniqifyDagNode(new BoundEvaluationDecisionDagNode(e.Syntax, e, next)); 1268state.Dag = uniqifyDagNode(new BoundTestDecisionDagNode(d.Syntax, d, whenTrue, whenFalse)); 2180Dag = null;
8 references to Dag
Microsoft.CodeAnalysis.CSharp (8)
Binder\DecisionDagBuilder.cs (8)
808var rootDecisionDagNode = decisionDag.RootNode.Dag; 1183/// and store it in <see cref="DagState.Dag"/>. 1238BoundDecisionDagNode? whenFalse = state.FalseBranch.Dag; 1256BoundDecisionDagNode? next = state.TrueBranch!.Dag; 1264BoundDecisionDagNode? whenTrue = state.TrueBranch!.Dag; 1265BoundDecisionDagNode? whenFalse = state.FalseBranch!.Dag; 2118/// and <see cref="Dag"/> are computed (for example to merge states), they must be cleared and recomputed, 2162Debug.Assert(dagState.Dag is null);