| 532 | |
| 533 | |
| 534 | LUA_API void lua_gettable (lua_State *L, int idx) { |
| 535 | StkId t; |
| 536 | lua_lock(L); |
| 537 | t = index2adr(L, idx); |
| 538 | api_checkvalidindex(L, t); |
| 539 | luaV_gettable(L, t, L->top - 1, L->top - 1); |
| 540 | lua_unlock(L); |
| 541 | } |
| 542 | |
| 543 | |
| 544 | LUA_API void lua_getfield (lua_State *L, int idx, const char *k) { |
no test coverage detected