12 references to LeftOperand
Microsoft.CodeAnalysis.VisualBasic (12)
Analysis\FlowAnalysis\AbstractFlowPass.vb (2)
2233If node.LeftOperand IsNot Nothing Then 2234VisitRvalue(node.LeftOperand)
BoundTree\BoundUserDefinedShortCircuitingOperator.vb (2)
16Debug.Assert((LeftOperand Is Nothing) = (LeftOperandPlaceholder Is Nothing)) 17Debug.Assert(LeftOperand IsNot Nothing OrElse HasErrors)
Generated\BoundNodes.xml.Generated.vb (4)
1694If 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 11232Me.Visit(node.LeftOperand) 12211Dim leftOperand As BoundExpression = DirectCast(Me.Visit(node.LeftOperand), BoundExpression) 13368New TreeDumperNode("leftOperand", Nothing, new TreeDumperNode() {Visit(node.LeftOperand, Nothing)}),
Lowering\LocalRewriter\LocalRewriter_BinaryOperators.vb (4)
29Dim leftOperand As BoundExpression = node.LeftOperand 45Return node.Update(node.LeftOperand, node.LeftOperandPlaceholder, node.LeftTest, rewritten, node.Type) 51Dim temp As New SynthesizedLocal(_currentMethodOrLambda, node.LeftOperand.Type, SynthesizedLocalKind.LoweringTemp) 58VisitExpressionNode(node.LeftOperand),