1 implementation of Left
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
9789public IOperation Left { get; }
7 references to Left
Microsoft.CodeAnalysis (4)
Operations\ControlFlowGraphBuilder.cs (4)
6668switch (currentAddition.Left) 6676throw ExceptionUtilities.UnexpectedValue(currentAddition.Left.Kind); 6688throw ExceptionUtilities.UnexpectedValue(currentAddition.Left.Kind); 6709current = current.Left as IInterpolatedStringAdditionOperation;
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (1)
1864Visit(operation.Left, "Left");
Compilation\TestOperationVisitor.cs (2)
1314AssertEx.Equal(new[] { operation.Left, operation.Right }, operation.ChildOperations); 1315Assert.True(operation.Left is IInterpolatedStringAdditionOperation or IInterpolatedStringOperation);