| 148 | |
| 149 | |
| 150 | l_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 | |
| 160 | TStatus luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) { |
no test coverage detected