| 682 | |
| 683 | |
| 684 | static Table *gettable (lua_State *L, int idx) { |
| 685 | TValue *t = index2value(L, idx); |
| 686 | api_check(L, ttistable(t), "table expected"); |
| 687 | return hvalue(t); |
| 688 | } |
| 689 | |
| 690 | |
| 691 | LUA_API int lua_rawget (lua_State *L, int idx) { |
no test coverage detected