| 648 | } |
| 649 | |
| 650 | LUA_API void lua_createtable(lua_State *L, int narray, int nrec) |
| 651 | { |
| 652 | GCtab *t; |
| 653 | lj_gc_check(L); |
| 654 | t = lj_tab_new(L, (uint32_t)(narray > 0 ? narray+1 : 0), hsize2hbits(nrec)); |
| 655 | settabV(L, L->top, t); |
| 656 | incr_top(L); |
| 657 | } |
| 658 | |
| 659 | LUALIB_API int luaL_newmetatable(lua_State *L, const char *tname) |
| 660 | { |
no test coverage detected