1 implementation of LeftOperand
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
9086public IOperation? LeftOperand { get; }
3 references to LeftOperand
Microsoft.CodeAnalysis (3)
Operations\ControlFlowGraphBuilder.cs (3)
7743if (operation.LeftOperand is object) 7745PushOperand(VisitRequired(operation.LeftOperand)); 7754IOperation? visitedLeftOperand = operation.LeftOperand is null ? null : PopOperand();