| 2381 | |
| 2382 | |
| 2383 | LUA_API void lua_gettable (lua_State *L, int idx) { |
| 2384 | StkId t; |
| 2385 | lua_lock(L); |
| 2386 | t = index2adr(L, idx); |
| 2387 | api_checkvalidindex(L, t); |
| 2388 | luaV_gettable(L, t, L->top - 1, L->top - 1); |
| 2389 | lua_unlock(L); |
| 2390 | } |
| 2391 | |
| 2392 | |
| 2393 | LUA_API void lua_getfield (lua_State *L, int idx, const char *k) { |
no test coverage detected