| 589 | |
| 590 | |
| 591 | static int luaB_newuserdata (lua_State *L) { |
| 592 | lua_newuserdata(L, 0); |
| 593 | lua_newtable(L); |
| 594 | lua_setmetatable(L, -2); |
| 595 | return 1; |
| 596 | } |
| 597 | |
| 598 | |
| 599 | TValue *index2value (lua_State *L, int idx); |
nothing calls this directly
no test coverage detected