MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / lua_gettable

Function lua_gettable

deps/lua/src/lapi.c:534–541  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

532
533
534LUA_API void lua_gettable (lua_State *L, int idx) {
535 StkId t;
536 lua_lock(L);
537 t = index2adr(L, idx);
538 api_checkvalidindex(L, t);
539 luaV_gettable(L, t, L->top - 1, L->top - 1);
540 lua_unlock(L);
541}
542
543
544LUA_API void lua_getfield (lua_State *L, int idx, const char *k) {

Callers 7

luaRaiseErrorFunction · 0.85
luaSortArrayFunction · 0.85
luaReplyToRedisReplyFunction · 0.85
ldbRedisFunction · 0.85
add_valueFunction · 0.85
ll_registerFunction · 0.85

Calls 2

index2adrFunction · 0.85
luaV_gettableFunction · 0.85

Tested by

no test coverage detected