11 references to LowerBoundConditionOpt
Microsoft.CodeAnalysis.VisualBasic (11)
Analysis\FlowAnalysis\AbstractFlowPass.vb (2)
1906Debug.Assert(node.LowerBoundOpt IsNot Nothing Xor node.LowerBoundConditionOpt IsNot Nothing) 1911VisitRvalue(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)
5233If lowerBoundOpt IsNot Me.LowerBoundOpt OrElse upperBoundOpt IsNot Me.UpperBoundOpt OrElse lowerBoundConditionOpt IsNot Me.LowerBoundConditionOpt OrElse upperBoundConditionOpt IsNot Me.UpperBoundConditionOpt Then 11613Me.Visit(node.LowerBoundConditionOpt) 12641Dim lowerBoundConditionOpt As BoundExpression = DirectCast(Me.Visit(node.LowerBoundConditionOpt), BoundExpression) 13947New TreeDumperNode("lowerBoundConditionOpt", Nothing, new TreeDumperNode() {Visit(node.LowerBoundConditionOpt, Nothing)}),