12 references to LowerBoundConditionOpt
Microsoft.CodeAnalysis.VisualBasic (12)
Analysis\FlowAnalysis\AbstractFlowPass.vb (2)
1890Debug.Assert(node.LowerBoundOpt IsNot Nothing Xor node.LowerBoundConditionOpt IsNot Nothing) 1895VisitRvalue(node.LowerBoundConditionOpt)
Binding\Binder_SelectCase.vb (4)
508Debug.Assert(boundClause.LowerBoundOpt IsNot Nothing Xor boundClause.LowerBoundConditionOpt IsNot Nothing) 510Dim lowerBoundConditionOpt = boundClause.LowerBoundConditionOpt 614Debug.Assert(rangeCaseClause.LowerBoundOpt IsNot Nothing Xor rangeCaseClause.LowerBoundConditionOpt IsNot Nothing) 673Debug.Assert(rangeCaseClause.LowerBoundConditionOpt Is Nothing)
BoundTree\BoundRangeCaseClause.vb (1)
11ValidateValueAndCondition(LowerBoundOpt, LowerBoundConditionOpt, BinaryOperatorKind.GreaterThanOrEqual)
Generated\BoundNodes.xml.Generated.vb (4)
5214If lowerBoundOpt IsNot Me.LowerBoundOpt OrElse upperBoundOpt IsNot Me.UpperBoundOpt OrElse lowerBoundConditionOpt IsNot Me.LowerBoundConditionOpt OrElse upperBoundConditionOpt IsNot Me.UpperBoundConditionOpt Then 11579Me.Visit(node.LowerBoundConditionOpt) 12607Dim lowerBoundConditionOpt As BoundExpression = DirectCast(Me.Visit(node.LowerBoundConditionOpt), BoundExpression) 13910New TreeDumperNode("lowerBoundConditionOpt", Nothing, new TreeDumperNode() {Visit(node.LowerBoundConditionOpt, Nothing)}),
Operations\VisualBasicOperationFactory.vb (1)
1124Dim minimumValue As IOperation = Create(GetCaseClauseValue(boundRangeCaseClause.LowerBoundOpt, boundRangeCaseClause.LowerBoundConditionOpt))