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

Function load_aux

Source/Misc/lua/src/lua.c:11130–11138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11128
11129
11130static int load_aux (lua_State *L, int status) {
11131if (status == 0) /* OK? */
11132return 1;
11133else {
11134lua_pushnil(L);
11135lua_insert(L, -2); /* put before error message */
11136return 2; /* return nil plus error message */
11137}
11138}
11139
11140
11141static int luaB_loadstring (lua_State *L) {

Callers 3

luaB_loadstringFunction · 0.85
luaB_loadfileFunction · 0.85
luaB_loadFunction · 0.85

Calls 2

lua_pushnilFunction · 0.85
lua_insertFunction · 0.85

Tested by

no test coverage detected