From 8c5f476397c6943d5c49e37ca26118b908d67143 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Sun, 14 May 2017 01:00:28 +0000 Subject: Partially revert 4cccf8c6b2c2b1af0afafef52bc87477ba7f817a --- src/lvm.js | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/lvm.js b/src/lvm.js index 6a1602c..d48610c 100644 --- a/src/lvm.js +++ b/src/lvm.js @@ -971,13 +971,18 @@ const luaV_concat = function(L, total) { delete L.stack[top - 1]; } else { /* at least two non-empty string values; get as many as possible */ - let concatenated = L.stack[top-1].svalue(); + 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++) { - concatenated = L.stack[top - n - 1].svalue().concat(concatenated); + for (n = 1; n < total; n++) { + if (!tostring(L, top - n - 1)) { + toconcat = toconcat.slice(total-n); + break; + } + toconcat[total-n-1] = L.stack[top - n - 1].svalue(); delete L.stack[top - n - 1]; } - let ts = lstring.luaS_bless(L, concatenated); + let ts = lstring.luaS_bless(L, Array.prototype.concat.apply([], toconcat)); L.stack[top - n] = new lobject.TValue(CT.LUA_TLNGSTR, ts); } total -= n - 1; /* got 'n' strings to create 1 new */ -- cgit v1.2.3-54-g00ecf