MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / lua_gettable

Function lua_gettable

lua/lapi.c:541–548  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

539
540
541LUA_API void lua_gettable (lua_State *L, int idx) {
542 StkId t;
543 lua_lock(L);
544 t = index2adr(L, idx);
545 api_checkvalidindex(L, t);
546 luaV_gettable(L, t, L->top - 1, L->top - 1);
547 lua_unlock(L);
548}
549
550
551LUA_API void lua_getfield (lua_State *L, int idx, const char *k) {

Callers 9

add_valueFunction · 0.85
get_date_valueFunction · 0.85
get_string_valueFunction · 0.85
l_datetime_helperFunction · 0.85
l_typed_assignmentFunction · 0.85
get_func_by_refFunction · 0.85
get_func_by_nameFunction · 0.85
db_create_threadFunction · 0.85
ll_registerFunction · 0.85

Calls 2

index2adrFunction · 0.85
luaV_gettableFunction · 0.85

Tested by

no test coverage detected