mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
Only assign metatable to clone if __metatable
is undefined
This commit is contained in:
parent
489e79192a
commit
bb14db9d91
1 changed files with 3 additions and 1 deletions
|
@ -797,7 +797,6 @@ Table* luaH_clone(lua_State* L, Table* tt)
|
|||
{
|
||||
Table* t = luaM_newgco(L, Table, sizeof(Table), L->activememcat);
|
||||
luaC_init(L, t, LUA_TTABLE);
|
||||
t->metatable = tt->metatable;
|
||||
t->tmcache = tt->tmcache;
|
||||
t->array = NULL;
|
||||
t->sizearray = 0;
|
||||
|
@ -808,6 +807,9 @@ Table* luaH_clone(lua_State* L, Table* tt)
|
|||
t->node = cast_to(LuaNode*, dummynode);
|
||||
t->lastfree = 0;
|
||||
|
||||
if (!luaL_getmetafield(L, 1, "__metatable"))
|
||||
t->metatable = tt->metatable;
|
||||
|
||||
if (tt->sizearray)
|
||||
{
|
||||
t->array = luaM_newarray(L, tt->sizearray, TValue, t->memcat);
|
||||
|
|
Loading…
Add table
Reference in a new issue