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

Function luaD_throwbaselevel

third-party/lua-5.5.0/src/ldo.c:150–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148
149
150l_noret luaD_throwbaselevel (lua_State *L, TStatus errcode) {
151 if (L->errorJmp) {
152 /* unroll error entries up to the first level */
153 while (L->errorJmp->previous != NULL)
154 L->errorJmp = L->errorJmp->previous;
155 }
156 luaD_throw(L, errcode);
157}
158
159
160TStatus luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) {

Callers 1

lua_closethreadFunction · 0.85

Calls 1

luaD_throwFunction · 0.70

Tested by

no test coverage detected