mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 18:30:54 +01:00
Remove metatable check
This commit is contained in:
parent
9a102e2aff
commit
489e79192a
1 changed files with 0 additions and 3 deletions
|
@ -585,10 +585,7 @@ static int tisfrozen(lua_State* L)
|
||||||
static int tclone(lua_State* L)
|
static int tclone(lua_State* L)
|
||||||
{
|
{
|
||||||
luaL_checktype(L, 1, LUA_TTABLE);
|
luaL_checktype(L, 1, LUA_TTABLE);
|
||||||
luaL_argcheck(L, !luaL_getmetafield(L, 1, "__metatable"), 1, "table has a protected metatable");
|
|
||||||
|
|
||||||
Table* tt = luaH_clone(L, hvalue(L->base));
|
Table* tt = luaH_clone(L, hvalue(L->base));
|
||||||
|
|
||||||
TValue v;
|
TValue v;
|
||||||
sethvalue(L, &v, tt);
|
sethvalue(L, &v, tt);
|
||||||
luaA_pushobject(L, &v);
|
luaA_pushobject(L, &v);
|
||||||
|
|
Loading…
Add table
Reference in a new issue