21 references to LeftShift
Microsoft.CodeAnalysis.CSharp (1)
Binder\Semantics\Operators\OperatorKindExtensions.cs (1)
363case BinaryOperatorKind.LeftShift: return ExpressionType.LeftShift;
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (1)
383ExpressionType.LeftShift => SpecialNames.CLR_LShift,
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
1028case ExpressionType.LeftShift:
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
1178Return ExpressionType.LeftShift
System.Linq.Expressions (17)
System\Dynamic\BinaryOperationBinder.cs (1)
90case ExpressionType.LeftShift:
System\Linq\Expressions\BinaryExpression.cs (7)
152ExpressionType.LeftShiftAssign => ExpressionType.LeftShift, 926ExpressionType.LeftShift => LeftShift(left, right, method), 2251/// <returns>A <see cref="BinaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.LeftShift"/> 2264/// <returns>A <see cref="BinaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.LeftShift"/> 2276return new SimpleBinaryExpression(ExpressionType.LeftShift, left, right, resultType); 2278return GetUserDefinedBinaryOperatorOrThrow(ExpressionType.LeftShift, "op_LeftShift", left, right, liftToNull: true); 2280return GetMethodBasedBinaryOperator(ExpressionType.LeftShift, left, right, method, liftToNull: true);
System\Linq\Expressions\Compiler\LambdaCompiler.Binary.cs (2)
236case ExpressionType.LeftShift: 321case ExpressionType.LeftShift:
System\Linq\Expressions\Compiler\LambdaCompiler.Generated.cs (1)
43case ExpressionType.LeftShift:
System\Linq\Expressions\Compiler\StackSpiller.Generated.cs (1)
43case ExpressionType.LeftShift:
System\Linq\Expressions\DebugViewWriter.cs (2)
335case ExpressionType.LeftShift: op = "<<"; break; 695case ExpressionType.LeftShift:
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
223case ExpressionType.LeftShift:
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
946case ExpressionType.LeftShift: 3039case ExpressionType.LeftShift: