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