14 references to LeftOperand
Microsoft.CodeAnalysis.VisualBasic (14)
Analysis\FlowAnalysis\AbstractFlowPass.vb (2)
2217If node.LeftOperand IsNot Nothing Then 2218VisitRvalue(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)
1691If 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 11214Me.Visit(node.LeftOperand) 12193Dim leftOperand As BoundExpression = DirectCast(Me.Visit(node.LeftOperand), BoundExpression) 13347New TreeDumperNode("leftOperand", Nothing, new TreeDumperNode() {Visit(node.LeftOperand, Nothing)}),
Lowering\LocalRewriter\LocalRewriter_BinaryOperators.vb (4)
34Dim leftOperand As BoundExpression = node.LeftOperand 50Return node.Update(node.LeftOperand, node.LeftOperandPlaceholder, node.LeftTest, rewritten, node.Type) 56Dim temp As New SynthesizedLocal(_currentMethodOrLambda, node.LeftOperand.Type, SynthesizedLocalKind.LoweringTemp) 63VisitExpressionNode(node.LeftOperand),
Operations\VisualBasicOperationFactory.vb (2)
538Return If(boundShortCircuiting.LeftOperand IsNot Nothing, 539Create(boundShortCircuiting.LeftOperand), ' Possibly dropping conversions https://github.com/dotnet/roslyn/issues/23236