| 241 | |
| 242 | |
| 243 | static int luaB_type (lua_State *L) { |
| 244 | int t = lua_type(L, 1); |
| 245 | luaL_argcheck(L, t != LUA_TNONE, 1, "value expected"); |
| 246 | lua_pushstring(L, lua_typename(L, t)); |
| 247 | return 1; |
| 248 | } |
| 249 | |
| 250 | |
| 251 | static int luaB_next (lua_State *L) { |
nothing calls this directly
no test coverage detected