1 implementation of LeftOperand
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
9084public IOperation? LeftOperand { get; }
7 references to LeftOperand
Microsoft.CodeAnalysis (3)
Operations\ControlFlowGraphBuilder.cs (3)
7734if (operation.LeftOperand is object) 7736PushOperand(VisitRequired(operation.LeftOperand)); 7745IOperation? visitedLeftOperand = operation.LeftOperand is null ? null : PopOperand();
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\OperationTreeVerifier.cs (2)
2153Visit(operation.LeftOperand, nameof(operation.LeftOperand));
Compilation\TestOperationVisitor.cs (2)
1776if (operation.LeftOperand != null) 1778Assert.Same(operation.LeftOperand, children[index++]);