From 662e326db5e44859bb92242d6dc27e386fb621ec Mon Sep 17 00:00:00 2001 From: daurnimator Date: Sun, 4 Feb 2018 19:27:56 -0800 Subject: src/{luaconf,lauxlib}.js: LUAL_BUFFERSIZE should be defined in luaconf --- src/lauxlib.js | 5 +++-- src/luaconf.js | 6 ++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/lauxlib.js b/src/lauxlib.js index 15d8dab..3dfc072 100644 --- a/src/lauxlib.js +++ b/src/lauxlib.js @@ -1,5 +1,8 @@ "use strict"; +const { + LUAL_BUFFERSIZE +} = require('./luaconf.js'); const { LUA_ERRERR, LUA_MULTRET, @@ -471,8 +474,6 @@ const luaL_buffinitsize = function(L, B, sz) { return luaL_prepbuffsize(B, sz); }; -const LUAL_BUFFERSIZE = 8192; - const luaL_prepbuffer = function(B) { return luaL_prepbuffsize(B, LUAL_BUFFERSIZE); }; diff --git a/src/luaconf.js b/src/luaconf.js index 533e316..9e0d571 100644 --- a/src/luaconf.js +++ b/src/luaconf.js @@ -45,6 +45,11 @@ const luai_apicheck = function(l, e) { if (!e) throw Error(e); }; +/* +@@ LUAL_BUFFERSIZE is the buffer size used by the lauxlib buffer system. +*/ +const LUAL_BUFFERSIZE = 8192; + // See: http://croquetweak.blogspot.fr/2014/08/deconstructing-floats-frexp-and-ldexp.html const frexp = function(value) { if (value === 0) return [value, 0]; @@ -76,6 +81,7 @@ module.exports.LUA_MAXINTEGER = LUA_MAXINTEGER; module.exports.LUA_MININTEGER = LUA_MININTEGER; module.exports.LUA_NUMBER_FMT = LUA_NUMBER_FMT; module.exports.LUA_NUMBER_FRMLEN = LUA_NUMBER_FRMLEN; +module.exports.LUAL_BUFFERSIZE = LUAL_BUFFERSIZE; module.exports.frexp = frexp; module.exports.ldexp = ldexp; module.exports.lua_getlocaledecpoint = lua_getlocaledecpoint; -- cgit v1.2.3-54-g00ecf