eris: weak tables fixed (garbage collector updates sequence data)

This commit is contained in:
2021-07-09 15:03:06 -04:00
parent dba5bccfa0
commit 311575eb30
3 changed files with 30 additions and 20 deletions

View File

@@ -25,6 +25,8 @@
LUAI_FUNC const TValue *luaH_getint (Table *t, int key);
LUAI_FUNC void luaH_setnil (Table *t, ANode *anode);
LUAI_FUNC void luaH_setnonnil (Table *t, ANode *anode, const TValue *value);
LUAI_FUNC void luaH_setint (lua_State *L, Table *t, int key, TValue *value);
LUAI_FUNC void luaH_setvalue (lua_State *L, Table *t, const TValue *key, TValue *value);
LUAI_FUNC void luaH_setupdate (lua_State *L, Table *t, const TValue *key, TValue *value, const TValue *getres);