| 555 | |
| 556 | |
| 557 | LUA_API void lua_rawget (lua_State *L, int idx) { |
| 558 | StkId t; |
| 559 | lua_lock(L); |
| 560 | t = index2adr(L, idx); |
| 561 | api_check(L, ttistable(t)); |
| 562 | setobj2s(L, L->top - 1, luaH_get(hvalue(t), L->top - 1)); |
| 563 | lua_unlock(L); |
| 564 | } |
| 565 | |
| 566 | |
| 567 | LUA_API void lua_rawgeti (lua_State *L, int idx, int n) { |
no test coverage detected