| 344 | |
| 345 | |
| 346 | static int luaB_assert (lua_State *L) { |
| 347 | if (!lua_toboolean(L, 1)) |
| 348 | return luaL_error(L, "%s", luaL_optstring(L, 2, "assertion failed!")); |
| 349 | return lua_gettop(L); |
| 350 | } |
| 351 | |
| 352 | |
| 353 | static int luaB_select (lua_State *L) { |
nothing calls this directly
no test coverage detected