| 11081 | |
| 11082 | |
| 11083 | static int luaB_type (lua_State *L) { |
| 11084 | luaL_checkany(L, 1); |
| 11085 | lua_pushstring(L, luaL_typename(L, 1)); |
| 11086 | return 1; |
| 11087 | } |
| 11088 | |
| 11089 | |
| 11090 | static int luaB_next (lua_State *L) { |
nothing calls this directly
no test coverage detected