Microsoft\Scripting\Ast\BinaryExpression.cs (5)
185return ExpressionType.LeftShift;
904case ExpressionType.LeftShift:
2139return new SimpleBinaryExpression(ExpressionType.LeftShift, left, right, resultType);
2141return GetUserDefinedBinaryOperatorOrThrow(ExpressionType.LeftShift, "op_LeftShift", left, right, true);
2143return GetMethodBasedBinaryOperator(ExpressionType.LeftShift, left, right, method, true);