| 247 | } |
| 248 | |
| 249 | static int luaB_tostring (lua_State *L) { |
| 250 | luaL_checkany(L, 1); |
| 251 | luaL_tolstring(L, 1, NULL); |
| 252 | return 1; |
| 253 | } |
| 254 | |
| 255 | static const luaL_Reg base_funcs[] = { |
| 256 | {"assert", luaB_assert}, |
nothing calls this directly
no test coverage detected