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