MCPcopy Create free account
hub / github.com/BZFlag-Dev/bzflag / luaL_error

Function luaL_error

other_src/lua/src/lauxlib.cpp:86–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84
85
86LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...) {
87 va_list argp;
88 va_start(argp, fmt);
89 luaL_where(L, 1);
90 lua_pushvfstring(L, fmt, argp);
91 va_end(argp);
92 lua_concat(L, 2);
93 return lua_error(L);
94}
95
96/* }====================================================== */
97

Callers 15

os_tmpnameFunction · 0.70
getfieldFunction · 0.70
setnFunction · 0.70
tinsertFunction · 0.70
addfieldFunction · 0.70
setprogdirFunction · 0.70
findfileFunction · 0.70
loaderrorFunction · 0.70
loader_preloadFunction · 0.70
ll_requireFunction · 0.70
setfenvFunction · 0.70
ll_moduleFunction · 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