** beware: when using this function you probably need to check a GC ** barrier and invalidate the TM cache. */
| 811 | ** barrier and invalidate the TM cache. |
| 812 | */ |
| 813 | void luaH_set (lua_State *L, Table *t, const TValue *key, TValue *value) { |
| 814 | const TValue *slot = luaH_get(t, key); |
| 815 | luaH_finishset(L, t, key, slot, value); |
| 816 | } |
| 817 | |
| 818 | |
| 819 | void luaH_setint (lua_State *L, Table *t, lua_Integer key, TValue *value) { |
no test coverage detected