Skip to content

Commit ab4209a

Browse files
committed
Fix: Test if the operator overload is correct
1 parent 682687e commit ab4209a

File tree

2 files changed

+32
-17
lines changed

2 files changed

+32
-17
lines changed

NeoLua.Test/Expressions.cs

+13-10
Original file line numberDiff line numberDiff line change
@@ -909,16 +909,19 @@ public void TestCompare08()
909909
new KeyValuePair<string, Type>("b", typeof(object))
910910
);
911911

912-
TestResult(g.dochunk(c, 1, 2), false);
913-
TestResult(g.dochunk(c, 2, 1), false);
914-
TestResult(g.dochunk(c, 2, 2), true);
915-
TestResult(g.dochunk(c, 2, (short)2), true);
916-
TestResult(g.dochunk(c, new TestOperator(1), 2), false);
917-
TestResult(g.dochunk(c, 2, new TestOperator(2)), false);
918-
object a = new object();
919-
TestResult(g.dochunk(c, a, a), true);
920-
TestResult(g.dochunk(c, "a", "a"), true);
921-
}
912+
TestResult(g.dochunk(c, 1, 2), false);
913+
TestResult(g.dochunk(c, 2, 1), false);
914+
TestResult(g.dochunk(c, 2, 2), true);
915+
TestResult(g.dochunk(c, 2, (short)2), true);
916+
TestResult(g.dochunk(c, new TestOperator(1), 2), false);
917+
TestResult(g.dochunk(c, 2, new TestOperator(2)), false);
918+
object a = new object();
919+
TestResult(g.dochunk(c, a, a), true);
920+
TestResult(g.dochunk(c, "a", "a"), true);
921+
TestResult(g.dochunk(c, 3.0m, null), false);
922+
TestResult(g.dochunk(c, null, 3.0m), false);
923+
TestResult(g.dochunk(c, null, null), true);
924+
}
922925
}
923926

924927
[TestMethod]

NeoLua/LuaEmit.cs

+19-7
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ private static bool IsFloatType(TypeCode typeCode)
171171
private static bool TryConvertType(Lua runtime, Type typeTo, ref Expression expr, ref Type exprType)
172172
{
173173
bool lExact;
174-
if (TypesMatch(typeTo, exprType, out lExact))// is the type compitible
174+
if (TypesMatch(typeTo, exprType, out lExact)) // is the type compitible
175175
{
176176
expr = Convert(runtime, expr, exprType, typeTo, false);
177177
exprType = typeTo;
@@ -1049,15 +1049,27 @@ private static Expression BinaryOperationArithmeticExpression(Lua runtime, Expre
10491049
MethodInfo miOperator = FindMethod(members3, parameterTypes, t => t, false);
10501050
if (miOperator != null)
10511051
{
1052+
// Get the argumentslist
10521053
ParameterInfo[] parameterInfo = miOperator.GetParameters();
10531054
if (op == Lua.IntegerDivide)
10541055
op = ExpressionType.Divide;
1055-
return Expression.MakeBinary(op,
1056-
Convert(runtime, expr1, type1, parameterInfo[0].ParameterType, lParse),
1057-
Convert(runtime, expr2, type2, parameterInfo[1].ParameterType, lParse),
1058-
true,
1059-
miOperator
1060-
);
1056+
1057+
// Check if the arguments are valid
1058+
Expression exprOperatorArgument1 = expr1;
1059+
Type typeOperatorArgument1 = type1;
1060+
Expression exprOperatorArgument2 = expr2;
1061+
Type typeOperatorArgument2 = type2;
1062+
1063+
if (TryConvertType(runtime, parameterInfo[0].ParameterType, ref exprOperatorArgument1, ref typeOperatorArgument1) &&
1064+
TryConvertType(runtime, parameterInfo[1].ParameterType, ref exprOperatorArgument2, ref typeOperatorArgument2))
1065+
{
1066+
return Expression.MakeBinary(op,
1067+
exprOperatorArgument1,
1068+
exprOperatorArgument2,
1069+
true,
1070+
miOperator
1071+
);
1072+
}
10611073
}
10621074
}
10631075
}

0 commit comments

Comments
 (0)