From b2c7f18f2d3b70daf3a18fedf486cac71e16dc58 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Sun, 4 Mar 2018 12:53:13 +1100 Subject: src/luaconf.js: Add LUA_COMPAT_FLOATSTRING For #113 --- src/lobject.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/lobject.js') diff --git a/src/lobject.js b/src/lobject.js index 8896c1e..e3b92f7 100644 --- a/src/lobject.js +++ b/src/lobject.js @@ -55,6 +55,7 @@ const { } = require('./lstring.js'); const ltable = require('./ltable.js'); const { + LUA_COMPAT_FLOATSTRING, ldexp, lua_getlocaledecpoint, lua_integer2str, @@ -585,15 +586,13 @@ const luaO_str2num = function(s, o) { } }; -/* this currently returns new TValue instead of modifying */ const luaO_tostring = function(L, obj) { let buff; if (obj.ttisinteger()) buff = to_luastring(lua_integer2str(obj.value)); else { let str = lua_number2str(obj.value); - // Assume no LUA_COMPAT_FLOATSTRING - if (/^[-0123456789]+$/.test(str)) { /* looks like an int? */ + if (!LUA_COMPAT_FLOATSTRING && /^[-0123456789]+$/.test(str)) { /* looks like an int? */ str += String.fromCharCode(lua_getlocaledecpoint()) + '0'; /* adds '.0' to result */ } buff = to_luastring(str); -- cgit v1.2.3-70-g09d2