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