diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-09 14:40:07 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-09 15:21:15 +1000 |
commit | dd087be6f10daf6dae87be07458dfaddb967edd1 (patch) | |
tree | 7a4b344fd41ff8dff1d62b00d0f6338e98a91863 /src/lvm.js | |
parent | 38e69595be760ead9fa4da7ac714c095e9f095b3 (diff) | |
download | fengari-dd087be6f10daf6dae87be07458dfaddb967edd1.tar.gz fengari-dd087be6f10daf6dae87be07458dfaddb967edd1.tar.bz2 fengari-dd087be6f10daf6dae87be07458dfaddb967edd1.zip |
src/lvm.js: In luaV_concat use correct stack indices + clean up
Diffstat (limited to 'src/lvm.js')
-rw-r--r-- | src/lvm.js | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -995,21 +995,26 @@ const luaV_concat = function(L, total) { let top = L.top; let n = 2; /* number of elements handled in this pass (at least 2) */ - if (!(L.stack[top-2].ttisstring() || L.stack[top-2].ttisnumber()) || !tostring(L, top - 1)) + if (!(L.stack[top-2].ttisstring() || L.stack[top-2].ttisnumber()) || !tostring(L, top - 1)) { ltm.luaT_trybinTM(L, L.stack[top-2], L.stack[top-1], top-2, ltm.TMS.TM_CONCAT); - else if (isemptystr(L.stack[top-1])) { + delete L.stack[top - 1]; + } else if (isemptystr(L.stack[top-1])) { tostring(L, top - 2); + delete L.stack[top - 1]; } else if (isemptystr(L.stack[top-2])) { L.stack[top - 2] = L.stack[top - 1]; + delete L.stack[top - 1]; } else { /* at least two non-empty string values; get as many as possible */ let toconcat = new Array(total); toconcat[total-1] = L.stack[top-1].svalue(); + delete L.stack[top - 1]; for (n = 1; n < total && tostring(L, top - n - 1); n++) { toconcat[total-n-1] = L.stack[top - n - 1].svalue(); + delete L.stack[top - n - 1]; } let ts = lstring.luaS_bless(L, Array.prototype.concat.apply([], toconcat)); - L.stack[top - total] = new lobject.TValue(CT.LUA_TLNGSTR, ts); + L.stack[top - n] = new lobject.TValue(CT.LUA_TLNGSTR, ts); } total -= n - 1; /* got 'n' strings to create 1 new */ L.top -= n - 1; /* popped 'n' strings and pushed one */ |