| 9758 | |
| 9759 | |
| 9760 | TValue *luaH_setstr (lua_State *L, Table *t, TString *key) { |
| 9761 | const TValue *p = luaH_getstr(t, key); |
| 9762 | if (p != luaO_nilobject) |
| 9763 | return cast(TValue *, p); |
| 9764 | else { |
| 9765 | TValue k; |
| 9766 | setsvalue(L, &k, key); |
| 9767 | return newkey(L, t, &k); |
| 9768 | } |
| 9769 | } |
| 9770 | |
| 9771 | |
| 9772 | static int unbound_search (Table *t, unsigned int j) { |
no test coverage detected