1 implementation of LeftOperand
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
8673public IOperation? LeftOperand { get; }
7 references to LeftOperand
Microsoft.CodeAnalysis (3)
Operations\ControlFlowGraphBuilder.cs (3)
7435if (operation.LeftOperand is object) 7437PushOperand(VisitRequired(operation.LeftOperand)); 7446IOperation? visitedLeftOperand = operation.LeftOperand is null ? null : PopOperand();
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\OperationTreeVerifier.cs (2)
2124Visit(operation.LeftOperand, nameof(operation.LeftOperand));
Compilation\TestOperationVisitor.cs (2)
1751if (operation.LeftOperand != null) 1753Assert.Same(operation.LeftOperand, children[index++]);