MCPcopy Create free account
hub / github.com/PolygonTek/BlueshiftEngine / luaL_checkstack

Function luaL_checkstack

Source/ThirdParty/lua/lauxlib.c:140–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138
139
140LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *mes) {
141 if (!lua_checkstack(L, space))
142 luaL_error(L, "stack overflow (%s)", mes);
143}
144
145
146LUALIB_API void luaL_checktype (lua_State *L, int narg, int t) {

Callers 10

getargsFunction · 0.70
generic_readerFunction · 0.70
str_byteFunction · 0.70
push_capturesFunction · 0.70
sortFunction · 0.70
g_readFunction · 0.70
luaL_setfuncsFunction · 0.50
CtorMethod · 0.50
RequireMethod · 0.50
test_stored_exceptionFunction · 0.50

Calls 2

lua_checkstackFunction · 0.70
luaL_errorFunction · 0.70

Tested by 1

test_stored_exceptionFunction · 0.40