| 1002 | |
| 1003 | |
| 1004 | static const TValue *Hgetstr (Table *t, TString *key) { |
| 1005 | if (strisshr(key)) |
| 1006 | return luaH_Hgetshortstr(t, key); |
| 1007 | else |
| 1008 | return Hgetlongstr(t, key); |
| 1009 | } |
| 1010 | |
| 1011 | |
| 1012 | lu_byte luaH_getstr (Table *t, TString *key, TValue *res) { |
no test coverage detected