7 writes to Dag
Microsoft.CodeAnalysis.CSharp (7)
Binder\DecisionDagBuilder.cs (7)
1596decisionDag.RootNode.Dag = defaultDecision; 1613state.Dag = defaultDecision; 1624state.Dag = finalState(first.Syntax, first.CaseLabel, first.Bindings); 1636state.Dag = uniqifyDagNode(new BoundWhenDecisionDagNode(first.Syntax, first.Bindings, first.WhenClause, whenTrue, whenFalse)); 1654state.Dag = uniqifyDagNode(new BoundEvaluationDecisionDagNode(e.Syntax, e, next)); 1663state.Dag = uniqifyDagNode(new BoundTestDecisionDagNode(d.Syntax, d, whenTrue, whenFalse)); 3062Dag = null;
8 references to Dag
Microsoft.CodeAnalysis.CSharp (8)
Binder\DecisionDagBuilder.cs (8)
1203var rootDecisionDagNode = decisionDag.RootNode.Dag; 1578/// and store it in <see cref="DagState.Dag"/>. 1633BoundDecisionDagNode? whenFalse = state.FalseBranch.Dag; 1651BoundDecisionDagNode? next = state.TrueBranch!.Dag; 1659BoundDecisionDagNode? whenTrue = state.TrueBranch!.Dag; 1660BoundDecisionDagNode? whenFalse = state.FalseBranch!.Dag; 3000/// and <see cref="Dag"/> are computed (for example to merge states), they must be cleared and recomputed, 3044Debug.Assert(dagState.Dag is null);