1 implementation of LeftOperand
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
9046public IOperation? LeftOperand { get; }
7 references to LeftOperand
Microsoft.CodeAnalysis (3)
Operations\ControlFlowGraphBuilder.cs (3)
7701if (operation.LeftOperand is object) 7703PushOperand(VisitRequired(operation.LeftOperand)); 7712IOperation? visitedLeftOperand = operation.LeftOperand is null ? null : PopOperand();
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\OperationTreeVerifier.cs (2)
2162Visit(operation.LeftOperand, nameof(operation.LeftOperand));
Compilation\TestOperationVisitor.cs (2)
1769if (operation.LeftOperand != null) 1771Assert.Same(operation.LeftOperand, children[index++]);