| 797 | |
| 798 | |
| 799 | Table *luaH_new (lua_State *L) { |
| 800 | GCObject *o = luaC_newobj(L, LUA_VTABLE, sizeof(Table)); |
| 801 | Table *t = gco2t(o); |
| 802 | t->metatable = NULL; |
| 803 | t->flags = maskflags; /* table has no metamethod fields */ |
| 804 | t->array = NULL; |
| 805 | t->asize = 0; |
| 806 | setnodevector(L, t, 0); |
| 807 | return t; |
| 808 | } |
| 809 | |
| 810 | |
| 811 | lu_mem luaH_size (Table *t) { |
no test coverage detected