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