1 implementation of Left
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10162public IOperation Left { get; }
7 references to Left
Microsoft.CodeAnalysis (4)
Operations\ControlFlowGraphBuilder.cs (4)
6906switch (currentAddition.Left) 6914throw ExceptionUtilities.UnexpectedValue(currentAddition.Left.Kind); 6926throw ExceptionUtilities.UnexpectedValue(currentAddition.Left.Kind); 6947current = current.Left as IInterpolatedStringAdditionOperation;
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (1)
1902Visit(operation.Left, "Left");
Compilation\TestOperationVisitor.cs (2)
1332AssertEx.Equal(new[] { operation.Left, operation.Right }, operation.ChildOperations); 1333Assert.True(operation.Left is IInterpolatedStringAdditionOperation or IInterpolatedStringOperation);