5 references to WhenDecisionDagNode
Microsoft.CodeAnalysis.CSharp (5)
Generated\BoundNodes.xml.Generated.cs (2)
5112
: base(BoundKind.
WhenDecisionDagNode
, syntax, hasErrors || whenExpression.HasErrors() || whenTrue.HasErrors() || whenFalse.HasErrors())
9098
case BoundKind.
WhenDecisionDagNode
:
Lowering\LocalRewriter\LocalRewriter.DecisionDagRewriter.cs (2)
388
ImmutableArray<BoundDecisionDagNode> nodesToLower = sortedNodes.WhereAsArray(n => n.Kind != BoundKind.
WhenDecisionDagNode
&& n.Kind != BoundKind.LeafDecisionDagNode);
972
if (!sortedNodes.Any(static n => n.Kind == BoundKind.
WhenDecisionDagNode
)) return;
Lowering\LocalRewriter\LocalRewriter_IsPatternOperator.cs (1)
244
while (node.Kind != BoundKind.LeafDecisionDagNode && node.Kind != BoundKind.
WhenDecisionDagNode
)