12 references to CapturedGroupOpt
Microsoft.CodeAnalysis.VisualBasic (12)
Analysis\FlowAnalysis\AbstractRegionControlFlowPass.vb (2)
75If node.CapturedGroupOpt IsNot Nothing Then 76VisitRvalue(node.CapturedGroupOpt)
Analysis\FlowAnalysis\DataFlowPass.vb (2)
1753If node.CapturedGroupOpt IsNot Nothing Then 1754VisitRvalue(node.CapturedGroupOpt)
BoundTree\Expression.vb (1)
195Return ImmutableArray.Create(Of BoundNode)(Me.CapturedGroupOpt, Me.UnderlyingExpression)
Generated\BoundNodes.xml.Generated.vb (4)
7465If capturedGroupOpt IsNot Me.CapturedGroupOpt OrElse groupPlaceholderOpt IsNot Me.GroupPlaceholderOpt OrElse underlyingExpression IsNot Me.UnderlyingExpression OrElse rangeVariables <> Me.RangeVariables OrElse compoundVariableType IsNot Me.CompoundVariableType OrElse binders <> Me.Binders OrElse type IsNot Me.Type Then 11830Me.Visit(node.CapturedGroupOpt) 12886Dim capturedGroupOpt As BoundQueryClauseBase = DirectCast(Me.Visit(node.CapturedGroupOpt), BoundQueryClauseBase) 14292New TreeDumperNode("capturedGroupOpt", Nothing, new TreeDumperNode() {Visit(node.CapturedGroupOpt, Nothing)}),
Lowering\LocalRewriter\LocalRewriter_Query.vb (3)
234If node.CapturedGroupOpt IsNot Nothing Then 236Dim groupLocal = New SynthesizedLocal(Me._currentMethodOrLambda, node.CapturedGroupOpt.Type, SynthesizedLocalKind.LoweringTemp) 246VisitExpressionNode(node.CapturedGroupOpt),