26 references to Left
Microsoft.CodeAnalysis.VisualBasic (15)
Binding\Binder_Query.vb (3)
3419Dim left As BoundExpression = outerKeyBinder.BindRValue(joinCondition.Left, diagnostics) 3432innerKey = innerKeyBinder.BindRValue(joinCondition.Left, BindingDiagnosticBag.Discarded) 3447innerKey = innerKeyBinder.BindRValue(joinCondition.Left, BindingDiagnosticBag.Discarded)
Generated\Syntax.xml.Main.Generated.vb (2)
4596Dim newLeft = DirectCast(Visit(node.Left), ExpressionSyntax) 4597If node.Left IsNot newLeft Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (4)
29339return Update(Me.Left, equalsKeyword, Me.Right) 29356return Update(Me.Left, Me.EqualsKeyword, right) 29373Return Me.Left 29404If left IsNot Me.Left OrElse equalsKeyword <> Me.EqualsKeyword OrElse right IsNot Me.Right Then
Syntax\LambdaUtilities.vb (6)
91Return If(oldJoinCondition.Left Is oldBody, GetJoinLeftLambdaBody(newJoinClause), GetJoinRightLambdaBody(newJoinClause)) 207If node Is joinCondition.Left Then 261Return joinClause.JoinConditions.First.Left 341lambdaBody1 = firstCondition.Left 422If lambdaBody Is joinCondition.Left Then 470Yield condition.Left
Microsoft.CodeAnalysis.VisualBasic.Features (9)
Completion\KeywordRecommenders\Expressions\BinaryOperatorKeywordRecommender.vb (1)
86context.Position, context.TargetToken, Function(j) j.Left, cancellationToken) Then
Completion\KeywordRecommenders\Queries\EqualsKeywordRecommender.vb (1)
22Return If(context.SyntaxTree.IsFollowingCompleteExpression(Of JoinConditionSyntax)(context.Position, context.TargetToken, Function(joinCondition) joinCondition.Left, cancellationToken),
EditAndContinue\BreakpointSpans.vb (1)
448Return expression Is joinCondition.Left OrElse expression Is joinCondition.Right
LambdaUtilities.vb (6)
91Return If(oldJoinCondition.Left Is oldBody, GetJoinLeftLambdaBody(newJoinClause), GetJoinRightLambdaBody(newJoinClause)) 207If node Is joinCondition.Left Then 261Return joinClause.JoinConditions.First.Left 341lambdaBody1 = firstCondition.Left 422If lambdaBody Is joinCondition.Left Then 470Yield condition.Left
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
21224Assert.NotNull(objectUnderTest.left) 21227Dim withObj = objectUnderTest.WithLeft(objectUnderTest.Left).WithEqualsKeyword(objectUnderTest.EqualsKeyword).WithRight(objectUnderTest.Right)