1 implementation of LeftOperand
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
8673
public IOperation?
LeftOperand
{ get; }
7 references to LeftOperand
Microsoft.CodeAnalysis (3)
Operations\ControlFlowGraphBuilder.cs (3)
7435
if (operation.
LeftOperand
is object)
7437
PushOperand(VisitRequired(operation.
LeftOperand
));
7446
IOperation? visitedLeftOperand = operation.
LeftOperand
is null ? null : PopOperand();
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\OperationTreeVerifier.cs (2)
2124
Visit(operation.
LeftOperand
, nameof(operation.
LeftOperand
));
Compilation\TestOperationVisitor.cs (2)
1751
if (operation.
LeftOperand
!= null)
1753
Assert.Same(operation.
LeftOperand
, children[index++]);