12 references to LeftOperand
Microsoft.CodeAnalysis.VisualBasic (12)
Analysis\FlowAnalysis\AbstractFlowPass.vb (2)
2233
If node.
LeftOperand
IsNot Nothing Then
2234
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)
1710
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
11248
Me.Visit(node.
LeftOperand
)
12227
Dim leftOperand As BoundExpression = DirectCast(Me.Visit(node.
LeftOperand
), BoundExpression)
13384
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
),