MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / load_aux

Function load_aux

third-party/lua-5.1.5/src/lbaselib.c:266–274  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

264
265
266static int load_aux (lua_State *L, int status) {
267 if (status == 0) /* OK? */
268 return 1;
269 else {
270 lua_pushnil(L);
271 lua_insert(L, -2); /* put before error message */
272 return 2; /* return nil plus error message */
273 }
274}
275
276
277static int luaB_loadstring (lua_State *L) {

Callers 3

luaB_loadstringFunction · 0.70
luaB_loadfileFunction · 0.70
luaB_loadFunction · 0.70

Calls 2

lua_pushnilFunction · 0.70
lua_insertFunction · 0.70

Tested by

no test coverage detected