Microsoft\Scripting\Ast\BinaryExpression.cs (5)
187return ExpressionType.ExclusiveOr;
896case ExpressionType.ExclusiveOr:
2485return new SimpleBinaryExpression(ExpressionType.ExclusiveOr, left, right, left.Type);
2487return GetUserDefinedBinaryOperatorOrThrow(ExpressionType.ExclusiveOr, "op_ExclusiveOr", left, right, true);
2489return GetMethodBasedBinaryOperator(ExpressionType.ExclusiveOr, left, right, method, true);