diff options
author | Benoit Giannangeli <giann008@gmail.com> | 2017-04-13 07:17:05 +0200 |
---|---|---|
committer | Benoit Giannangeli <giann008@gmail.com> | 2017-04-13 08:57:25 +0200 |
commit | d251efeb37778e2ab57a3d2c80b9df621a691796 (patch) | |
tree | fe6db792a0e9a018d10983a142724fda6e17071b /src/ltablib.js | |
parent | a6dc1dbf5a439a854581927fb36fdad05d0dff4b (diff) | |
download | fengari-d251efeb37778e2ab57a3d2c80b9df621a691796.tar.gz fengari-d251efeb37778e2ab57a3d2c80b9df621a691796.tar.bz2 fengari-d251efeb37778e2ab57a3d2c80b9df621a691796.zip |
Table indexes are also starting at 1 internally
Since we use a Map we don't have to care about indexes starting at 0
Diffstat (limited to 'src/ltablib.js')
-rw-r--r-- | src/ltablib.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ltablib.js b/src/ltablib.js index eaaf24d..210a119 100644 --- a/src/ltablib.js +++ b/src/ltablib.js @@ -192,7 +192,7 @@ const auxsort = function(L) { else if (typeof b[0] !== 'number') return -1; return lapi.lua_compare_(L, a[1], b[1], lua.LUA_OPLT) === 1 ? -1 : 1; /* a < b */ }) - .forEach((e, i) => typeof e[0] === 'number' ? t.value.set(i, e[1]) : true); + .forEach((e, i) => typeof e[0] === 'number' ? t.value.set(i + 1, e[1]) : true); } else { [...t.value.entries()] .sort(function (a, b) { @@ -207,7 +207,7 @@ const auxsort = function(L) { lapi.lua_pop(L, 1); /* pop result */ return res ? -1 : 1; }) - .forEach((e, i) => typeof e[0] === 'number' ? t.value.set(i, e[1]) : true); + .forEach((e, i) => typeof e[0] === 'number' ? t.value.set(i + 1, e[1]) : true); } }; |