| 717 | |
| 718 | |
| 719 | static Table *gettable (lua_State *L, int idx) { |
| 720 | TValue *t = index2value(L, idx); |
| 721 | api_check(L, ttistable(t), "table expected"); |
| 722 | return hvalue(t); |
| 723 | } |
| 724 | |
| 725 | |
| 726 | LUA_API int lua_rawget (lua_State *L, int idx) { |
no test coverage detected