| 576 | |
| 577 | |
| 578 | LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { |
| 579 | lua_lock(L); |
| 580 | luaC_checkGC(L); |
| 581 | sethvalue(L, L->top, luaH_new(L, narray, nrec)); |
| 582 | api_incr_top(L); |
| 583 | lua_unlock(L); |
| 584 | } |
| 585 | |
| 586 | |
| 587 | LUA_API int lua_getmetatable (lua_State *L, int objindex) { |
no test coverage detected