aboutsummaryrefslogtreecommitdiff
path: root/src/llimit.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/llimit.js')
-rw-r--r--src/llimit.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/llimit.js b/src/llimit.js
deleted file mode 100644
index 18824b2..0000000
--- a/src/llimit.js
+++ /dev/null
@@ -1,22 +0,0 @@
-"use strict";
-
-const LUAI_MAXCCALLS = 200;
-module.exports.LUAI_MAXCCALLS = LUAI_MAXCCALLS;
-const LUA_MAXINTEGER = 2147483647;
-module.exports.LUA_MAXINTEGER = LUA_MAXINTEGER;
-const LUA_MININTEGER = -2147483648;
-module.exports.LUA_MININTEGER = LUA_MININTEGER;
-
-const luai_nummod = function(L, a, b) {
- let m = a % b;
- if ((m*b) < 0)
- m += b;
- return m;
-};
-module.exports.luai_nummod = luai_nummod;
-
-// 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 = -2147483648;
-module.exports.MIN_INT = MIN_INT;