1 implementation of LeftOperand
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
9046
public IOperation?
LeftOperand
{ get; }
7 references to LeftOperand
Microsoft.CodeAnalysis (3)
Operations\ControlFlowGraphBuilder.cs (3)
7701
if (operation.
LeftOperand
is object)
7703
PushOperand(VisitRequired(operation.
LeftOperand
));
7712
IOperation? visitedLeftOperand = operation.
LeftOperand
is null ? null : PopOperand();
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\OperationTreeVerifier.cs (2)
2162
Visit(operation.
LeftOperand
, nameof(operation.
LeftOperand
));
Compilation\TestOperationVisitor.cs (2)
1769
if (operation.
LeftOperand
!= null)
1771
Assert.Same(operation.
LeftOperand
, children[index++]);