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

Function luaL_error

src/Chain/libraries/glua/lauxlib.cpp:231–239  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

229
230
231LUALIB_API int luaL_error(lua_State *L, const char *fmt, ...) {
232 va_list argp;
233 va_start(argp, fmt);
234 luaL_where(L, 1);
235 lua_pushvfstring(L, fmt, argp);
236 va_end(argp);
237 lua_concat(L, 2);
238 return lua_error(L);
239}
240
241
242LUALIB_API int luaL_fileresult(lua_State *L, int stat, const char *fname) {

Callers 15

codepointFunction · 0.85
byteoffsetFunction · 0.85
iter_auxFunction · 0.85
os_tmpnameFunction · 0.85
getfieldFunction · 0.85
os_dateFunction · 0.85
os_timeFunction · 0.85
tinsertFunction · 0.85
tappendFunction · 0.85
addfieldFunction · 0.85
tlengthFunction · 0.85
unpackFunction · 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