7 writes to Dag
Microsoft.CodeAnalysis.CSharp (7)
Binder\DecisionDagBuilder.cs (7)
1038decisionDag.RootNode.Dag = defaultDecision; 1055state.Dag = defaultDecision; 1066state.Dag = finalState(first.Syntax, first.CaseLabel, first.Bindings); 1078state.Dag = uniqifyDagNode(new BoundWhenDecisionDagNode(first.Syntax, first.Bindings, first.WhenClause, whenTrue, whenFalse)); 1096state.Dag = uniqifyDagNode(new BoundEvaluationDecisionDagNode(e.Syntax, e, next)); 1105state.Dag = uniqifyDagNode(new BoundTestDecisionDagNode(d.Syntax, d, whenTrue, whenFalse)); 1956Dag = null;
8 references to Dag
Microsoft.CodeAnalysis.CSharp (8)
Binder\DecisionDagBuilder.cs (8)
802var rootDecisionDagNode = decisionDag.RootNode.Dag; 1020/// and store it in <see cref="DagState.Dag"/>. 1075BoundDecisionDagNode? whenFalse = state.FalseBranch.Dag; 1093BoundDecisionDagNode? next = state.TrueBranch!.Dag; 1101BoundDecisionDagNode? whenTrue = state.TrueBranch!.Dag; 1102BoundDecisionDagNode? whenFalse = state.FalseBranch!.Dag; 1894/// and <see cref="Dag"/> are computed (for example to merge states), they must be cleared and recomputed, 1938Debug.Assert(dagState.Dag is null);