diff options
Diffstat (limited to 'src/ltable.js')
-rw-r--r-- | src/ltable.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ltable.js b/src/ltable.js index d6fffe9..ac12bd2 100644 --- a/src/ltable.js +++ b/src/ltable.js @@ -49,7 +49,7 @@ const getgeneric = function(t, hash) { }; const luaH_getint = function(t, key) { - assert(typeof key == "number"); + assert(typeof key == "number" && (key|0) === key); return getgeneric(t, key); }; @@ -79,7 +79,7 @@ const setgeneric = function(t, hash, key) { }; const luaH_setint = function(t, key, value) { - assert(typeof key == "number" && value instanceof lobject.TValue && (key|0) === key); + assert(typeof key == "number" && (key|0) === key && value instanceof lobject.TValue); let hash = key; /* table_hash known result */ let v = t.strong.get(hash); if (v) { |