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

Function luaL_error

Source/Misc/lua/src/lua.c:10298–10306  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10296
10297
10298LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...) {
10299va_list argp;
10300va_start(argp, fmt);
10301luaL_where(L, 1);
10302lua_pushvfstring(L, fmt, argp);
10303va_end(argp);
10304lua_concat(L, 2);
10305return lua_error(L);
10306}
10307
10308/* }====================================================== */
10309

Callers 15

usb.cFile · 0.85
luaL_argerrorFunction · 0.85
luaL_checkstackFunction · 0.85
luaI_openlibFunction · 0.85
luaB_printFunction · 0.85
luaB_setmetatableFunction · 0.85
getfuncFunction · 0.85
luaB_setfenvFunction · 0.85
generic_readerFunction · 0.85
luaB_assertFunction · 0.85
luaB_unpackFunction · 0.85
auxresumeFunction · 0.85

Calls 4

luaL_whereFunction · 0.85
lua_pushvfstringFunction · 0.85
lua_concatFunction · 0.85
lua_errorFunction · 0.85

Tested by

no test coverage detected