Skip to content

Commit 6aeb07d

Browse files
committed
more #314
1 parent ce04784 commit 6aeb07d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/FastExpressionCompiler.LightExpression/Expression.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1517,12 +1517,14 @@ public static BinaryExpression MakeBinary(ExpressionType binaryType, Expression
15171517
case ExpressionType.MultiplyChecked:
15181518
case ExpressionType.Divide:
15191519
case ExpressionType.Modulo:
1520+
return GetArithmeticBinary(binaryType, left, right, method);
1521+
15201522
case ExpressionType.Power:
15211523
case ExpressionType.And:
15221524
case ExpressionType.AndAlso:
15231525
case ExpressionType.Or:
15241526
case ExpressionType.OrElse:
1525-
return GetLeftTypedBinary(binaryType, left, right, method); // todo: @wip incomplete
1527+
return GetLeftTypedBinary(binaryType, left, right, method); // todo: @wip incomplete, see GetArithmeticBinary
15261528

15271529
case ExpressionType.LessThan: return LessThan(left, right, liftToNull, method);
15281530
case ExpressionType.LessThanOrEqual: return LessThanOrEqual(left, right, liftToNull, method);

0 commit comments

Comments
 (0)