MCPcopy Create free account
hub / github.com/PolygonTek/BlueshiftEngine / luaL_error

Function luaL_error

Source/ThirdParty/luaJIT/src/lj_err.c:792–801  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

790}
791
792LUALIB_API int luaL_error(lua_State *L, const char *fmt, ...)
793{
794 const char *msg;
795 va_list argp;
796 va_start(argp, fmt);
797 msg = lj_str_pushvf(L, fmt, argp);
798 va_end(argp);
799 lj_err_callermsg(L, msg);
800 return 0; /* unreachable */
801}
802

Callers 9

lib_io.cFile · 0.70
lib_jit.cFile · 0.70
jit_cpudetectFunction · 0.70
setprogdirFunction · 0.70
findfileFunction · 0.70
loaderrorFunction · 0.70
lj_cf_package_requireFunction · 0.70
setfenvFunction · 0.70

Calls 2

lj_str_pushvfFunction · 0.85
lj_err_callermsgFunction · 0.85

Tested by

no test coverage detected