| 1122 | |
| 1123 | |
| 1124 | int luaH_psetstr (Table *t, TString *key, TValue *val) { |
| 1125 | if (strisshr(key)) |
| 1126 | return luaH_psetshortstr(t, key, val); |
| 1127 | else |
| 1128 | return finishnodeset(t, Hgetlongstr(t, key), val); |
| 1129 | } |
| 1130 | |
| 1131 | |
| 1132 | int luaH_pset (Table *t, const TValue *key, TValue *val) { |
nothing calls this directly
no test coverage detected