MCPcopy Create free account
hub / github.com/F-Stack/f-stack / luaL_error

Function luaL_error

freebsd/contrib/openzfs/module/lua/lauxlib.c:190–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188
189
190LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...) {
191 va_list argp;
192 va_start(argp, fmt);
193 luaL_where(L, 1);
194 lua_pushvfstring(L, fmt, argp);
195 va_end(argp);
196 lua_concat(L, 2);
197 return lua_error(L);
198}
199
200
201#if !defined(inspectstat) /* { */

Callers 15

luaB_setmetatableFunction · 0.70
luaB_assertFunction · 0.70
str_repFunction · 0.70
str_byteFunction · 0.70
str_dumpFunction · 0.70
check_captureFunction · 0.70
capture_to_closeFunction · 0.70
classendFunction · 0.70
matchbalanceFunction · 0.70
start_captureFunction · 0.70
matchFunction · 0.70
push_onecaptureFunction · 0.70

Calls 4

luaL_whereFunction · 0.70
lua_pushvfstringFunction · 0.70
lua_concatFunction · 0.70
lua_errorFunction · 0.70

Tested by

no test coverage detected