| 994 | |
| 995 | |
| 996 | static const TValue *Hgetlongstr (Table *t, TString *key) { |
| 997 | TValue ko; |
| 998 | lua_assert(!strisshr(key)); |
| 999 | setsvalue(cast(lua_State *, NULL), &ko, key); |
| 1000 | return getgeneric(t, &ko, 0); /* for long strings, use generic case */ |
| 1001 | } |
| 1002 | |
| 1003 | |
| 1004 | static const TValue *Hgetstr (Table *t, TString *key) { |
no test coverage detected