aboutsummaryrefslogtreecommitdiff
path: root/src/luaconf.js
blob: b0456e3f8dce467ada89da8b221e16bd512b28f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*jshint esversion: 6 */
"use strict";

/*
@@ LUAI_MAXSTACK limits the size of the Lua stack.
** CHANGE it if you need a different limit. This limit is arbitrary;
** its only purpose is to stop Lua from consuming unlimited stack
** space (and to reserve some numbers for pseudo-indices).
*/
const LUAI_MAXSTACK = 1000000;

module.exports.LUAI_MAXSTACK = LUAI_MAXSTACK;