| 617 | |
| 618 | |
| 619 | LUA_API void lua_gettable (lua_State *L, int idx) { |
| 620 | StkId t; |
| 621 | lua_lock(L); |
| 622 | t = index2addr(L, idx); |
| 623 | luaV_gettable(L, t, L->top - 1, L->top - 1); |
| 624 | lua_unlock(L); |
| 625 | } |
| 626 | |
| 627 | |
| 628 | LUA_API void lua_getfield (lua_State *L, int idx, const char *k) { |
no test coverage detected