| 637 | |
| 638 | |
| 639 | LUA_API void lua_rawget (lua_State *L, int idx) { |
| 640 | StkId t; |
| 641 | lua_lock(L); |
| 642 | t = index2addr(L, idx); |
| 643 | api_check(L, ttistable(t), "table expected"); |
| 644 | setobj2s(L, L->top - 1, luaH_get(hvalue(t), L->top - 1)); |
| 645 | lua_unlock(L); |
| 646 | } |
| 647 | |
| 648 | |
| 649 | LUA_API void lua_rawgeti (lua_State *L, int idx, int n) { |
no test coverage detected