| 727 | |
| 728 | |
| 729 | static Table *gettable (lua_State *L, int idx) { |
| 730 | TValue *t = index2value(L, idx); |
| 731 | api_check(L, ttistable(t), "table expected"); |
| 732 | return hvalue(t); |
| 733 | } |
| 734 | |
| 735 | |
| 736 | LUA_API int lua_rawget (lua_State *L, int idx) { |
no test coverage detected