1 implementation of RightOperand
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
8674public IOperation? RightOperand { get; }
6 references to RightOperand
Microsoft.CodeAnalysis (2)
Operations\ControlFlowGraphBuilder.cs (2)
7441if (operation.RightOperand is object) 7443visitedRightOperand = Visit(operation.RightOperand);
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\OperationTreeVerifier.cs (2)
2125Visit(operation.RightOperand, nameof(operation.RightOperand));
Compilation\TestOperationVisitor.cs (2)
1756if (operation.RightOperand != null) 1758Assert.Same(operation.RightOperand, children[index++]);