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