| 366 | |
| 367 | |
| 368 | Table *luaH_new (lua_State *L) { |
| 369 | Table *t = &luaC_newobj(L, LUA_TTABLE, sizeof(Table), NULL, 0)->h; |
| 370 | t->metatable = NULL; |
| 371 | t->flags = cast_byte(~0); |
| 372 | t->array = NULL; |
| 373 | t->sizearray = 0; |
| 374 | setnodevector(L, t, 0); |
| 375 | return t; |
| 376 | } |
| 377 | |
| 378 | |
| 379 | void luaH_free (lua_State *L, Table *t) { |
no test coverage detected