** beware: when using this function you probably need to check a GC ** barrier and invalidate the TM cache. */
| 820 | ** barrier and invalidate the TM cache. |
| 821 | */ |
| 822 | void luaH_set (lua_State *L, Table *t, const TValue *key, TValue *value) { |
| 823 | const TValue *slot = luaH_get(t, key); |
| 824 | luaH_finishset(L, t, key, slot, value); |
| 825 | } |
| 826 | |
| 827 | |
| 828 | void luaH_setint (lua_State *L, Table *t, lua_Integer key, TValue *value) { |
no test coverage detected