7 writes to Dag
Microsoft.CodeAnalysis.CSharp (7)
Binder\DecisionDagBuilder.cs (7)
992decisionDag.RootNode.Dag = defaultDecision; 1009state.Dag = defaultDecision; 1020state.Dag = finalState(first.Syntax, first.CaseLabel, first.Bindings); 1032state.Dag = uniqifyDagNode(new BoundWhenDecisionDagNode(first.Syntax, first.Bindings, first.WhenClause, whenTrue, whenFalse)); 1050state.Dag = uniqifyDagNode(new BoundEvaluationDecisionDagNode(e.Syntax, e, next)); 1059state.Dag = uniqifyDagNode(new BoundTestDecisionDagNode(d.Syntax, d, whenTrue, whenFalse)); 1914Dag = null;
8 references to Dag
Microsoft.CodeAnalysis.CSharp (8)
Binder\DecisionDagBuilder.cs (8)
756var rootDecisionDagNode = decisionDag.RootNode.Dag; 974/// and store it in <see cref="DagState.Dag"/>. 1029BoundDecisionDagNode? whenFalse = state.FalseBranch.Dag; 1047BoundDecisionDagNode? next = state.TrueBranch!.Dag; 1055BoundDecisionDagNode? whenTrue = state.TrueBranch!.Dag; 1056BoundDecisionDagNode? whenFalse = state.FalseBranch!.Dag; 1852/// and <see cref="Dag"/> are computed (for example to merge states), they must be cleared and recomputed, 1896Debug.Assert(dagState.Dag is null);