| 225 | |
| 226 | |
| 227 | static int luaB_assert (lua_State *L) { |
| 228 | if (!lua_toboolean(L, 1)) |
| 229 | return luaL_error(L, "%s", luaL_optstring(L, 2, "assertion failed!")); |
| 230 | return lua_gettop(L); |
| 231 | } |
| 232 | |
| 233 | |
| 234 | static int luaB_select (lua_State *L) { |
nothing calls this directly
no test coverage detected