| 86 | } |
| 87 | |
| 88 | int lua_error_worker(lua_State* L) |
| 89 | { |
| 90 | typedef int (*dll_lua_error)(lua_State*); |
| 91 | EmmyFacade::Get().Attach(L); |
| 92 | LPVOID lp; |
| 93 | LhBarrierGetCallback(&lp); |
| 94 | const auto error = (dll_lua_error)lp; |
| 95 | // EmmyFacade::Get().BreakHere(L); |
| 96 | return error(L); |
| 97 | } |
| 98 | |
| 99 | int lua_resume_worker_54(lua_State* L, lua_State* from, int nargs, int* nresults) |
| 100 | { |
nothing calls this directly
no test coverage detected