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