aboutsummaryrefslogtreecommitdiff
path: root/src/ldebug.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-05-05 14:08:13 +1000
committerdaurnimator <quae@daurnimator.com>2017-05-05 14:21:38 +1000
commit2951276b31e04d7bff330b5c7af42d87cf766cd0 (patch)
treeb58ba139e1554589682b6b400be6324ab268c0d1 /src/ldebug.js
parentcdb82a10424543724388a00df5fb10b11efa8884 (diff)
downloadfengari-2951276b31e04d7bff330b5c7af42d87cf766cd0.tar.gz
fengari-2951276b31e04d7bff330b5c7af42d87cf766cd0.tar.bz2
fengari-2951276b31e04d7bff330b5c7af42d87cf766cd0.zip
src/ldebug.js: Fix incorrect error messages
Previously could get odd things, e.g. `1-nil` would throw: > attempt to perform arithmetic on a number value
Diffstat (limited to 'src/ldebug.js')
-rw-r--r--src/ldebug.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ldebug.js b/src/ldebug.js
index b411e0a..50625e5 100644
--- a/src/ldebug.js
+++ b/src/ldebug.js
@@ -551,8 +551,7 @@ const luaG_concaterror = function(L, p1, p2) {
** Error when both values are convertible to numbers, but not to integers
*/
const luaG_opinterror = function(L, p1, p2, msg) {
- let temp = lvm.tonumber(p1);
- if (temp !== false)
+ if (lvm.tonumber(p1) === false)
p2 = p1;
luaG_typeerror(L, p2, msg);
};