14 references to LeftOperand
Microsoft.CodeAnalysis.VisualBasic (14)
Analysis\FlowAnalysis\AbstractFlowPass.vb (2)
2217
If node.
LeftOperand
IsNot Nothing Then
2218
VisitRvalue(node.
LeftOperand
)
BoundTree\BoundUserDefinedShortCircuitingOperator.vb (2)
16
Debug.Assert((
LeftOperand
Is Nothing) = (LeftOperandPlaceholder Is Nothing))
17
Debug.Assert(
LeftOperand
IsNot Nothing OrElse HasErrors)
Generated\BoundNodes.xml.Generated.vb (4)
1691
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
11214
Me.Visit(node.
LeftOperand
)
12193
Dim leftOperand As BoundExpression = DirectCast(Me.Visit(node.
LeftOperand
), BoundExpression)
13347
New TreeDumperNode("leftOperand", Nothing, new TreeDumperNode() {Visit(node.
LeftOperand
, Nothing)}),
Lowering\LocalRewriter\LocalRewriter_BinaryOperators.vb (4)
34
Dim leftOperand As BoundExpression = node.
LeftOperand
50
Return node.Update(node.
LeftOperand
, node.LeftOperandPlaceholder, node.LeftTest, rewritten, node.Type)
56
Dim temp As New SynthesizedLocal(_currentMethodOrLambda, node.
LeftOperand
.Type, SynthesizedLocalKind.LoweringTemp)
63
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