7 writes to Dag
Microsoft.CodeAnalysis.CSharp (7)
Binder\DecisionDagBuilder.cs (7)
1591decisionDag.RootNode.Dag = defaultDecision; 1608state.Dag = defaultDecision; 1619state.Dag = finalState(first.Syntax, first.CaseLabel, first.Bindings); 1631state.Dag = uniqifyDagNode(new BoundWhenDecisionDagNode(first.Syntax, first.Bindings, first.WhenClause, whenTrue, whenFalse)); 1649state.Dag = uniqifyDagNode(new BoundEvaluationDecisionDagNode(e.Syntax, e, next)); 1658state.Dag = uniqifyDagNode(new BoundTestDecisionDagNode(d.Syntax, d, whenTrue, whenFalse)); 3035Dag = null;
8 references to Dag
Microsoft.CodeAnalysis.CSharp (8)
Binder\DecisionDagBuilder.cs (8)
1198var rootDecisionDagNode = decisionDag.RootNode.Dag; 1573/// and store it in <see cref="DagState.Dag"/>. 1628BoundDecisionDagNode? whenFalse = state.FalseBranch.Dag; 1646BoundDecisionDagNode? next = state.TrueBranch!.Dag; 1654BoundDecisionDagNode? whenTrue = state.TrueBranch!.Dag; 1655BoundDecisionDagNode? whenFalse = state.FalseBranch!.Dag; 2973/// and <see cref="Dag"/> are computed (for example to merge states), they must be cleared and recomputed, 3017Debug.Assert(dagState.Dag is null);