diff options
-rw-r--r-- | src/lvm.js | 6 | ||||
-rw-r--r-- | tests/test-suite/events.js | 6 |
2 files changed, 8 insertions, 4 deletions
@@ -859,8 +859,10 @@ const tonumber = function(v) { if (v.ttnov() === CT.LUA_TNUMBER) return v.value; - if (v.ttnov() === CT.LUA_TSTRING) - return lobject.luaO_str2num(v.svalue()); + if (v.ttnov() === CT.LUA_TSTRING) { + let number = lobject.luaO_str2num(v.svalue()); + return number ? number.value : false; + } return false; }; diff --git a/tests/test-suite/events.js b/tests/test-suite/events.js index 64e8056..40dc30d 100644 --- a/tests/test-suite/events.js +++ b/tests/test-suite/events.js @@ -2,6 +2,8 @@ const test = require('tape'); +global.WEB = false; + const lauxlib = require("../../src/lauxlib.js"); const lua = require('../../src/lua.js'); @@ -59,7 +61,7 @@ test("[test-suite] events: testing metatable", function (t) { setmetatable(t, t) -- causes a bug in 5.1 ! t.__newindex = f a[1] = 30; a.x = "101"; a[5] = 200 - -- assert(a[1] == 27 and a.x == 98 and a[5] == 197) + assert(a[1] == 27 and a.x == 98 and a[5] == 197) `, L; t.plan(2); @@ -80,4 +82,4 @@ test("[test-suite] events: testing metatable", function (t) { }, "Lua program ran without error"); -});
\ No newline at end of file +}); |