1 implementation of Left
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10200public IOperation Left { get; }
7 references to Left
Microsoft.CodeAnalysis (4)
Operations\ControlFlowGraphBuilder.cs (4)
6930switch (currentAddition.Left) 6938throw ExceptionUtilities.UnexpectedValue(currentAddition.Left.Kind); 6950throw ExceptionUtilities.UnexpectedValue(currentAddition.Left.Kind); 6971current = current.Left as IInterpolatedStringAdditionOperation;
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (1)
1893Visit(operation.Left, "Left");
Compilation\TestOperationVisitor.cs (2)
1339AssertEx.Equal(new[] { operation.Left, operation.Right }, operation.ChildOperations); 1340Assert.True(operation.Left is IInterpolatedStringAdditionOperation or IInterpolatedStringOperation);