blob: 21a09a0c2f0fc72c760e5e7e597a683c43d5797e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
"use strict";
const LUAI_MAXCCALLS = 200;
module.exports.LUAI_MAXCCALLS = LUAI_MAXCCALLS;
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;
|