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