12 references to LeftOperand
Microsoft.CodeAnalysis.VisualBasic (12)
Analysis\FlowAnalysis\AbstractFlowPass.vb (2)
2233
If node.
LeftOperand
IsNot Nothing Then
2234
VisitRvalue(node.
LeftOperand
)
Generated\BoundNodes.xml.Generated.vb (4)
1701
If leftOperand IsNot Me.
LeftOperand
OrElse leftOperandPlaceholder IsNot Me.LeftOperandPlaceholder OrElse leftTest IsNot Me.LeftTest OrElse bitwiseOperator IsNot Me.BitwiseOperator OrElse type IsNot Me.Type Then
11239
Me.Visit(node.
LeftOperand
)
12218
Dim leftOperand As BoundExpression = DirectCast(Me.Visit(node.
LeftOperand
), BoundExpression)
13375
New TreeDumperNode("leftOperand", Nothing, new TreeDumperNode() {Visit(node.
LeftOperand
, Nothing)}),
Lowering\LocalRewriter\LocalRewriter_BinaryOperators.vb (4)
29
Dim leftOperand As BoundExpression = node.
LeftOperand
45
Return node.Update(node.
LeftOperand
, node.LeftOperandPlaceholder, node.LeftTest, rewritten, node.Type)
51
Dim temp As New SynthesizedLocal(_currentMethodOrLambda, node.
LeftOperand
.Type, SynthesizedLocalKind.LoweringTemp)
58
VisitExpressionNode(node.
LeftOperand
),
Operations\VisualBasicOperationFactory.vb (2)
538
Return If(boundShortCircuiting.
LeftOperand
IsNot Nothing,
539
Create(boundShortCircuiting.
LeftOperand
), ' Possibly dropping conversions https://github.com/dotnet/roslyn/issues/23236