| 662 | |
| 663 | |
| 664 | LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { |
| 665 | Table *t; |
| 666 | lua_lock(L); |
| 667 | luaC_checkGC(L); |
| 668 | t = luaH_new(L); |
| 669 | sethvalue(L, L->top, t); |
| 670 | api_incr_top(L); |
| 671 | if (narray > 0 || nrec > 0) |
| 672 | luaH_resize(L, t, narray, nrec); |
| 673 | lua_unlock(L); |
| 674 | } |
| 675 | |
| 676 | |
| 677 | LUA_API int lua_getmetatable (lua_State *L, int objindex) { |
no test coverage detected