MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / lua_gettable

Function lua_gettable

Source/Misc/lua/src/lua.c:2383–2390  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 15

luausb_generic_indexFunction · 0.85
luausb_generic_newindexFunction · 0.85
luausb_to_class_codeFunction · 0.85
luausb_is_class_codeFunction · 0.85
luausb_check_class_codeFunction · 0.85
luausb_to_transfer_typeFunction · 0.85

Calls 2

index2adrFunction · 0.85
luaV_gettableFunction · 0.85

Tested by

no test coverage detected