MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / lua_gettable

Function lua_gettable

third-party/lua-5.2.4/src/lapi.c:619–625  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

617
618
619LUA_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
628LUA_API void lua_getfield (lua_State *L, int idx, const char *k) {

Callers 1

add_valueFunction · 0.70

Calls 2

index2addrFunction · 0.70
luaV_gettableFunction · 0.70

Tested by

no test coverage detected