| 608 | |
| 609 | |
| 610 | LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { |
| 611 | lua_lock(L); |
| 612 | luaC_checkGC(L); |
| 613 | sethvalue(L, L->top, luaH_new(L, narray, nrec)); |
| 614 | api_incr_top(L); |
| 615 | lua_unlock(L); |
| 616 | } |
| 617 | |
| 618 | |
| 619 | LUA_API int lua_getmetatable (lua_State *L, int objindex) { |
no test coverage detected