MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / luaL_checkstack

Function luaL_checkstack

Source/Misc/lua/src/lua.c:10352–10355  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10350
10351
10352LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *mes) {
10353if (!lua_checkstack(L, space))
10354luaL_error(L, "stack overflow (%s)", mes);
10355}
10356
10357
10358LUALIB_API void luaL_checktype (lua_State *L, int narg, int t) {

Callers 6

setfuncsFunction · 0.85
generic_readerFunction · 0.85
g_readFunction · 0.85
str_byteFunction · 0.85
push_capturesFunction · 0.85
sortFunction · 0.85

Calls 2

lua_checkstackFunction · 0.85
luaL_errorFunction · 0.85

Tested by

no test coverage detected