| 312 | |
| 313 | |
| 314 | static int luaB_type (lua_State *L) { |
| 315 | int t = lua_type(L, 1); |
| 316 | luaL_argcheck(L, t != LUA_TNONE, 1, "value expected"); |
| 317 | lua_pushstring(L, lua_typename(L, t)); |
| 318 | return 1; |
| 319 | } |
| 320 | |
| 321 | LUAI_FUNC int luaB_next(lua_State *L); |
| 322 | int luaB_next (lua_State *L) { |
nothing calls this directly
no test coverage detected