MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / luaD_errerr

Function luaD_errerr

third-party/lua-5.4.6/src/ldo.c:200–205  ·  view source on GitHub ↗

raise an error while running the message handler */

Source from the content-addressed store, hash-verified

198
199/* raise an error while running the message handler */
200l_noret luaD_errerr (lua_State *L) {
201 TString *msg = luaS_newliteral(L, "error in error handling");
202 setsvalue2s(L, L->top.p, msg);
203 L->top.p++; /* assume EXTRA_STACK */
204 luaD_throw(L, LUA_ERRERR);
205}
206
207
208/*

Callers 2

luaE_checkcstackFunction · 0.70
luaD_growstackFunction · 0.70

Calls 1

luaD_throwFunction · 0.70

Tested by

no test coverage detected