| 717 | } |
| 718 | |
| 719 | LUA_API void lua_createtable(lua_State *L, int narray, int nrec) |
| 720 | { |
| 721 | lj_gc_check(L); |
| 722 | settabV(L, L->top, lj_tab_new_ah(L, narray, nrec)); |
| 723 | incr_top(L); |
| 724 | } |
| 725 | |
| 726 | LUALIB_API int luaL_newmetatable(lua_State *L, const char *tname) |
| 727 | { |
no test coverage detected