From 656758c86ad929b07bb6422eb0f44cf9f2347aac Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Mon, 24 Apr 2017 12:01:42 +0200 Subject: Use maximum 32bit number instead of Number.MAX_SAFE_INTEGER --- src/llimit.js | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'src/llimit.js') diff --git a/src/llimit.js b/src/llimit.js index 9c02eb0..06b8370 100644 --- a/src/llimit.js +++ b/src/llimit.js @@ -1,6 +1,15 @@ /*jshint esversion: 6 */ "use strict"; -module.exports.LUAI_MAXCCALLS = 200; -module.exports.LUA_MAXINTEGER = 2147483647; -module.exports.LUA_MININTEGER = -2147483647; \ No newline at end of file +const LUAI_MAXCCALLS = 200; +module.exports.LUAI_MAXCCALLS = LUAI_MAXCCALLS; +const LUA_MAXINTEGER = 2147483647; +module.exports.LUA_MAXINTEGER = LUA_MAXINTEGER; +const LUA_MININTEGER = -2147483647; +module.exports.LUA_MININTEGER = LUA_MININTEGER; + +// If later integers are more than 32bit, LUA_MAXINTEGER will then be != MAX_INT +const MAX_INT = 2147483647; +module.exports.MAX_INT = MAX_INT; +const MIN_INT = -2147483647; +module.exports.MIN_INT = MIN_INT; -- cgit v1.2.3-54-g00ecf