7 writes to Dag
Microsoft.CodeAnalysis.CSharp (7)
Binder\DecisionDagBuilder.cs (7)
1624decisionDag.RootNode.Dag = defaultDecision; 1641state.Dag = defaultDecision; 1652state.Dag = finalState(first.Syntax, first.CaseLabel, first.Bindings); 1664state.Dag = uniqifyDagNode(new BoundWhenDecisionDagNode(first.Syntax, first.Bindings, first.WhenClause, whenTrue, whenFalse)); 1682state.Dag = uniqifyDagNode(new BoundEvaluationDecisionDagNode(e.Syntax, e, next)); 1691state.Dag = uniqifyDagNode(new BoundTestDecisionDagNode(d.Syntax, d, whenTrue, whenFalse)); 3090Dag = null;
8 references to Dag
Microsoft.CodeAnalysis.CSharp (8)
Binder\DecisionDagBuilder.cs (8)
1231var rootDecisionDagNode = decisionDag.RootNode.Dag; 1606/// and store it in <see cref="DagState.Dag"/>. 1661BoundDecisionDagNode? whenFalse = state.FalseBranch.Dag; 1679BoundDecisionDagNode? next = state.TrueBranch!.Dag; 1687BoundDecisionDagNode? whenTrue = state.TrueBranch!.Dag; 1688BoundDecisionDagNode? whenFalse = state.FalseBranch!.Dag; 3028/// and <see cref="Dag"/> are computed (for example to merge states), they must be cleared and recomputed, 3072Debug.Assert(dagState.Dag is null);