| 564 | |
| 565 | |
| 566 | LUA_API void lua_gettable (lua_State *L, int idx) { |
| 567 | StkId t; |
| 568 | lua_lock(L); |
| 569 | t = index2adr(L, idx); |
| 570 | api_checkvalidindex(L, t); |
| 571 | luaV_gettable(L, t, L->top - 1, L->top - 1); |
| 572 | lua_unlock(L); |
| 573 | } |
| 574 | |
| 575 | |
| 576 | LUA_API void lua_getfield (lua_State *L, int idx, const char *k) { |
no test coverage detected