| 583 | |
| 584 | |
| 585 | LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { |
| 586 | lua_lock(L); |
| 587 | luaC_checkGC(L); |
| 588 | sethvalue(L, L->top, luaH_new(L, narray, nrec)); |
| 589 | api_incr_top(L); |
| 590 | lua_unlock(L); |
| 591 | } |
| 592 | |
| 593 | |
| 594 | LUA_API int lua_getmetatable (lua_State *L, int objindex) { |
no test coverage detected