14 references to UpperBoundOpt
Microsoft.CodeAnalysis.VisualBasic (14)
Analysis\FlowAnalysis\AbstractFlowPass.vb (3)
1915
Debug.Assert(node.
UpperBoundOpt
IsNot Nothing Xor node.UpperBoundConditionOpt IsNot Nothing)
1917
If node.
UpperBoundOpt
IsNot Nothing Then
1918
VisitRvalue(node.
UpperBoundOpt
)
Binding\Binder_SelectCase.vb (5)
524
Debug.Assert(boundClause.
UpperBoundOpt
IsNot Nothing Xor boundClause.UpperBoundConditionOpt IsNot Nothing)
531
right:=boundClause.
UpperBoundOpt
,
617
Debug.Assert(rangeCaseClause.
UpperBoundOpt
IsNot Nothing Xor rangeCaseClause.UpperBoundConditionOpt IsNot Nothing)
620
Dim upperBound = rangeCaseClause.
UpperBoundOpt
667
Dim upperBound = rangeCaseClause.
UpperBoundOpt
Binding\Binder_Statements.vb (1)
282
children.Add(range.
UpperBoundOpt
)
BoundTree\BoundRangeCaseClause.vb (1)
12
ValidateValueAndCondition(
UpperBoundOpt
, UpperBoundConditionOpt, BinaryOperatorKind.LessThanOrEqual)
Generated\BoundNodes.xml.Generated.vb (4)
5233
If lowerBoundOpt IsNot Me.LowerBoundOpt OrElse upperBoundOpt IsNot Me.
UpperBoundOpt
OrElse lowerBoundConditionOpt IsNot Me.LowerBoundConditionOpt OrElse upperBoundConditionOpt IsNot Me.UpperBoundConditionOpt Then
11612
Me.Visit(node.
UpperBoundOpt
)
12640
Dim upperBoundOpt As BoundExpression = DirectCast(Me.Visit(node.
UpperBoundOpt
), BoundExpression)
13946
New TreeDumperNode("upperBoundOpt", Nothing, new TreeDumperNode() {Visit(node.
UpperBoundOpt
, Nothing)}),