Base:
method
Visit
Microsoft.CodeAnalysis.VisualBasic.Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.Visit(Microsoft.CodeAnalysis.VisualBasic.Microsoft.CodeAnalysis.VisualBasic.BoundNode)
26 references to Visit
Microsoft.CodeAnalysis.VisualBasic (26)
CodeGen\Optimizer\StackScheduler.Analyzer.vb (26)
90
Dim rewritten As BoundNode = analyzer.
Visit
(node)
804
Dim testExpression As BoundExpression = DirectCast(Me.
Visit
(node.TestExpression), BoundExpression)
816
Dim elseExpression As BoundExpression = DirectCast(Me.
Visit
(node.ElseExpression), BoundExpression)
826
Dim condition = DirectCast(Me.
Visit
(node.Condition), BoundExpression)
831
Dim whenTrue = DirectCast(Me.
Visit
(node.WhenTrue), BoundExpression)
836
Dim whenFalse = DirectCast(Me.
Visit
(node.WhenFalse), BoundExpression)
853
Dim receiverOrCondition = DirectCast(Me.
Visit
(node.ReceiverOrCondition), BoundExpression)
861
Dim whenNotNull = DirectCast(Me.
Visit
(node.WhenNotNull), BoundExpression)
869
whenNull = DirectCast(Me.
Visit
(node.WhenNullOpt), BoundExpression)
929
Dim left = DirectCast(Me.
Visit
(child), BoundExpression)
950
Dim right = DirectCast(Me.
Visit
(binary.Right), BoundExpression)
981
Dim left As BoundExpression = DirectCast(Me.
Visit
(node.Left), BoundExpression)
987
Dim right As BoundExpression = DirectCast(Me.
Visit
(node.Right), BoundExpression)
1004
Dim operand = DirectCast(Me.
Visit
(node.Operand), BoundExpression)
1017
Dim expressionStatement As BoundExpressionStatement = DirectCast(Me.
Visit
(node.ExpressionStatement), BoundExpressionStatement)
1028
Dim exprPlaceholderOpt As BoundRValuePlaceholder = DirectCast(Me.
Visit
(node.ExprPlaceholderOpt), BoundRValuePlaceholder)
1049
Dim caseStatement As BoundCaseStatement = DirectCast(Me.
Visit
(node.CaseStatement), BoundCaseStatement)
1052
Dim body As BoundBlock = DirectCast(Me.
Visit
(node.Body), BoundBlock)
1059
Dim value = DirectCast(
Visit
(node.Value), BoundExpression)
1066
Dim resumeLabel = DirectCast(
Visit
(node.ResumeLabel), BoundLabelStatement)
1067
Dim resumeNextLabel = DirectCast(
Visit
(node.ResumeNextLabel), BoundLabelStatement)
1068
Dim resumeTargetTemporary = DirectCast(
Visit
(node.ResumeTargetTemporary), BoundLocal)
1077
Dim tryBlock = DirectCast(Me.
Visit
(node.TryBlock), BoundBlock)
1084
Dim finallyBlock = DirectCast(Me.
Visit
(node.FinallyBlockOpt), BoundBlock)
1114
Dim body As BoundBlock = DirectCast(Me.
Visit
(node.Body), BoundBlock)
1149
Dim expressionOpt = TryCast(Me.
Visit
(node.ExpressionOpt), BoundExpression)