6 writes to Dag
Microsoft.CodeAnalysis.CSharp (6)
Binder\DecisionDagBuilder.cs (6)
941decisionDag.RootNode.Dag = defaultDecision; 958state.Dag = defaultDecision; 969state.Dag = finalState(first.Syntax, first.CaseLabel, first.Bindings); 981state.Dag = uniqifyDagNode(new BoundWhenDecisionDagNode(first.Syntax, first.Bindings, first.WhenClause, whenTrue, whenFalse)); 999state.Dag = uniqifyDagNode(new BoundEvaluationDecisionDagNode(e.Syntax, e, next)); 1008state.Dag = uniqifyDagNode(new BoundTestDecisionDagNode(d.Syntax, d, whenTrue, whenFalse));
7 references to Dag
Microsoft.CodeAnalysis.CSharp (7)
Binder\DecisionDagBuilder.cs (7)
721var rootDecisionDagNode = decisionDag.RootNode.Dag; 923/// and store it in <see cref="DagState.Dag"/>. 978BoundDecisionDagNode? whenFalse = state.FalseBranch.Dag; 996BoundDecisionDagNode? next = state.TrueBranch!.Dag; 1004BoundDecisionDagNode? whenTrue = state.TrueBranch!.Dag; 1005BoundDecisionDagNode? whenFalse = state.FalseBranch!.Dag; 1747/// and <see cref="Dag"/> are computed (for example to merge states), they must be cleared and recomputed,