| 2404 | |
| 2405 | |
| 2406 | LUA_API void lua_rawget (lua_State *L, int idx) { |
| 2407 | StkId t; |
| 2408 | lua_lock(L); |
| 2409 | t = index2adr(L, idx); |
| 2410 | api_check(L, ttistable(t)); |
| 2411 | setobj2s(L, L->top - 1, luaH_get(hvalue(t), L->top - 1)); |
| 2412 | lua_unlock(L); |
| 2413 | } |
| 2414 | |
| 2415 | |
| 2416 | LUA_API void lua_rawgeti (lua_State *L, int idx, int n) { |
no test coverage detected