7 writes to Dag
Microsoft.CodeAnalysis.CSharp (7)
Binder\DecisionDagBuilder.cs (7)
990decisionDag.RootNode.Dag = defaultDecision; 1007state.Dag = defaultDecision; 1018state.Dag = finalState(first.Syntax, first.CaseLabel, first.Bindings); 1030state.Dag = uniqifyDagNode(new BoundWhenDecisionDagNode(first.Syntax, first.Bindings, first.WhenClause, whenTrue, whenFalse)); 1048state.Dag = uniqifyDagNode(new BoundEvaluationDecisionDagNode(e.Syntax, e, next)); 1057state.Dag = uniqifyDagNode(new BoundTestDecisionDagNode(d.Syntax, d, whenTrue, whenFalse)); 1912Dag = null;
7 references to Dag
Microsoft.CodeAnalysis.CSharp (7)
Binder\DecisionDagBuilder.cs (7)
754var rootDecisionDagNode = decisionDag.RootNode.Dag; 972/// and store it in <see cref="DagState.Dag"/>. 1027BoundDecisionDagNode? whenFalse = state.FalseBranch.Dag; 1045BoundDecisionDagNode? next = state.TrueBranch!.Dag; 1053BoundDecisionDagNode? whenTrue = state.TrueBranch!.Dag; 1054BoundDecisionDagNode? whenFalse = state.FalseBranch!.Dag; 1850/// and <see cref="Dag"/> are computed (for example to merge states), they must be cleared and recomputed,