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