11 references to UpperBoundConditionOpt
Microsoft.CodeAnalysis.VisualBasic (11)
Analysis\FlowAnalysis\AbstractFlowPass.vb (2)
1915
Debug.Assert(node.UpperBoundOpt IsNot Nothing Xor node.
UpperBoundConditionOpt
IsNot Nothing)
1920
VisitRvalue(node.
UpperBoundConditionOpt
)
Binding\Binder_SelectCase.vb (4)
524
Debug.Assert(boundClause.UpperBoundOpt IsNot Nothing Xor boundClause.
UpperBoundConditionOpt
IsNot Nothing)
526
Dim upperBoundConditionOpt = boundClause.
UpperBoundConditionOpt
617
Debug.Assert(rangeCaseClause.UpperBoundOpt IsNot Nothing Xor rangeCaseClause.
UpperBoundConditionOpt
IsNot Nothing)
674
Debug.Assert(rangeCaseClause.
UpperBoundConditionOpt
Is Nothing)
Generated\BoundNodes.xml.Generated.vb (4)
5224
If lowerBoundOpt IsNot Me.LowerBoundOpt OrElse upperBoundOpt IsNot Me.UpperBoundOpt OrElse lowerBoundConditionOpt IsNot Me.LowerBoundConditionOpt OrElse upperBoundConditionOpt IsNot Me.
UpperBoundConditionOpt
Then
11605
Me.Visit(node.
UpperBoundConditionOpt
)
12633
Dim upperBoundConditionOpt As BoundExpression = DirectCast(Me.Visit(node.
UpperBoundConditionOpt
), BoundExpression)
13939
New TreeDumperNode("upperBoundConditionOpt", Nothing, new TreeDumperNode() {Visit(node.
UpperBoundConditionOpt
, Nothing)})
Operations\VisualBasicOperationFactory.vb (1)
1125
Dim maximumValue As IOperation = Create(GetCaseClauseValue(boundRangeCaseClause.UpperBoundOpt, boundRangeCaseClause.
UpperBoundConditionOpt
))