MCPcopy Create free account
hub / github.com/F-Stack/f-stack / lua_gettable

Function lua_gettable

freebsd/contrib/openzfs/module/lua/lapi.c:616–622  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

614
615
616LUA_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
625LUA_API void lua_getfield (lua_State *L, int idx, const char *k) {

Callers 2

add_valueFunction · 0.70
zcp_parse_table_argsFunction · 0.50

Calls 2

index2addrFunction · 0.85
luaV_gettableFunction · 0.70

Tested by

no test coverage detected