** beware: when using this function you probably need to check a GC ** barrier and invalidate the TM cache. */
| 837 | ** barrier and invalidate the TM cache. |
| 838 | */ |
| 839 | void luaH_set (lua_State *L, Table *t, const TValue *key, TValue *value) { |
| 840 | const TValue *slot = luaH_get(t, key); |
| 841 | luaH_finishset(L, t, key, slot, value); |
| 842 | } |
| 843 | |
| 844 | |
| 845 | void luaH_setint (lua_State *L, Table *t, lua_Integer key, TValue *value) { |
no test coverage detected