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