| 1152 | |
| 1153 | |
| 1154 | int luaH_psetstr (Table *t, TString *key, TValue *val) { |
| 1155 | if (strisshr(key)) |
| 1156 | return luaH_psetshortstr(t, key, val); |
| 1157 | else |
| 1158 | return finishnodeset(t, Hgetlongstr(t, key), val); |
| 1159 | } |
| 1160 | |
| 1161 | |
| 1162 | int luaH_pset (Table *t, const TValue *key, TValue *val) { |
nothing calls this directly
no test coverage detected