MCPcopy Create free account
hub / github.com/BZFlag-Dev/bzflag / lua_gettable

Function lua_gettable

other_src/lua/src/lapi.cpp:566–573  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

564
565
566LUA_API void lua_gettable (lua_State *L, int idx) {
567 StkId t;
568 lua_lock(L);
569 t = index2adr(L, idx);
570 api_checkvalidindex(L, t);
571 luaV_gettable(L, t, L->top - 1, L->top - 1);
572 lua_unlock(L);
573}
574
575
576LUA_API void lua_getfield (lua_State *L, int idx, const char *k) {

Callers 11

ll_registerFunction · 0.70
getpositionFunction · 0.70
fix_lFunction · 0.70
querycapFunction · 0.70
add_valueFunction · 0.70
SubTableMethod · 0.50
PushValueMethod · 0.50
luaget_valueFunction · 0.50
GetValuesTemplateMethod · 0.50
SetTransformMethod · 0.50
checkTableFloatFunction · 0.50

Calls 2

index2adrFunction · 0.70
luaV_gettableFunction · 0.70

Tested by

no test coverage detected