14 references to LowerBound
Microsoft.CodeAnalysis.VisualBasic (10)
Binding\Binder_Expressions.vb (2)
4291Dim lowerBound = BindValue(rangeArgument.LowerBound, diagnostics) 4298ReportDiagnostic(diagnostics, rangeArgument.LowerBound, ERRID.ERR_OnlyNullLowerBound)
Binding\MemberSemanticModel.vb (1)
1806If DirectCast(parent, RangeArgumentSyntax).LowerBound Is child Then
Compilation\SyntaxTreeSemanticModel.vb (1)
1672If DirectCast(parent, RangeArgumentSyntax).LowerBound Is currentNode Then
Generated\Syntax.xml.Main.Generated.vb (2)
4334Dim newLowerBound = DirectCast(Visit(node.LowerBound), ExpressionSyntax) 4335If node.LowerBound IsNot newLowerBound Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (4)
26997return Update(Me.LowerBound, toKeyword, Me.UpperBound) 27015return Update(Me.LowerBound, Me.ToKeyword, upperBound) 27032Return Me.LowerBound 27063If lowerBound IsNot Me.LowerBound OrElse toKeyword <> Me.ToKeyword OrElse upperBound IsNot Me.UpperBound Then
Microsoft.CodeAnalysis.VisualBasic.Features (2)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (1)
249Yield range.LowerBound
IntroduceVariable\VisualBasicIntroduceVariableService.vb (1)
138If expression.CheckParent(Of RangeArgumentSyntax)(Function(n) n.LowerBound Is expression) Then
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
21059Assert.NotNull(objectUnderTest.lowerBound) 21062Dim withObj = objectUnderTest.WithLowerBound(objectUnderTest.LowerBound).WithToKeyword(objectUnderTest.ToKeyword).WithUpperBound(objectUnderTest.UpperBound)