MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / luaL_error

Function luaL_error

lua/lauxlib.c:118–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

116
117
118LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...) {
119 va_list argp;
120 va_start(argp, fmt);
121 luaL_where(L, 1);
122 lua_pushvfstring(L, fmt, argp);
123 va_end(argp);
124 lua_concat(L, 2);
125 return lua_error(L);
126}
127
128/* }====================================================== */
129

Callers 15

lstopFunction · 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
math_randomFunction · 0.85
str_byteFunction · 0.85
str_dumpFunction · 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