| 577 | } |
| 578 | |
| 579 | static int AssertNilNilFunc(lua_State* L) { |
| 580 | lua_getglobal(L, "assert"); |
| 581 | lua_pushnil(L); // condition = nil (falsy) |
| 582 | lua_pushnil(L); // message = nil |
| 583 | lua_call(L, 2, 0); |
| 584 | return 0; // Never reached |
| 585 | } |
| 586 | |
| 587 | static int DeepLuaErrorFunc(lua_State* L) { |
| 588 | // Create a Lua call stack to show traceback with content |
nothing calls this directly
no test coverage detected