From f87a838f498c2ec6536ba813d7ae83bd1e78a506 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Mon, 29 May 2017 14:13:28 +1000 Subject: luaO_tostring should modify TValue --- src/lobject.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/lobject.js') diff --git a/src/lobject.js b/src/lobject.js index 7f81438..db76cb5 100644 --- a/src/lobject.js +++ b/src/lobject.js @@ -530,7 +530,7 @@ const luaO_tostring = function(L, obj) { buff.push(char['0']); /* adds '.0' to result */ } } - return lstring.luaS_bless(L, buff); + obj.setsvalue(lstring.luaS_bless(L, buff)); }; const pushstr = function(L, str) { @@ -563,11 +563,13 @@ const luaO_pushvfstring = function(L, fmt, argp) { case char['d']: case char['I']: ldo.luaD_inctop(L); - setsvalue2s(L, L.top-1, luaO_tostring(L, new TValue(CT.LUA_TNUMINT, argp[a++]))); + L.stack[L.top-1].setivalue(argp[a++]); + luaO_tostring(L, L.stack[L.top-1]); break; case char['f']: ldo.luaD_inctop(L); - setsvalue2s(L, L.top-1, luaO_tostring(L, new TValue(CT.LUA_TNUMFLT, argp[a++]))); + L.stack[L.top-1].setfltvalue(argp[a++]); + luaO_tostring(L, L.stack[L.top-1]); break; case char['p']: let v = argp[a++]; -- cgit v1.2.3-54-g00ecf