Microsoft\Scripting\Ast\BinaryExpression.cs (5)
179return ExpressionType.And;
876case ExpressionType.And:
2314return new SimpleBinaryExpression(ExpressionType.And, left, right, left.Type);
2316return GetUserDefinedBinaryOperatorOrThrow(ExpressionType.And, "op_BitwiseAnd", left, right, true);
2318return GetMethodBasedBinaryOperator(ExpressionType.And, left, right, method, true);