MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / lua_rawgeti

Function lua_rawgeti

third-party/lua-5.5.0/src/lapi.c:772–779  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

770
771
772LUA_API int lua_rawgeti (lua_State *L, int idx, lua_Integer n) {
773 Table *t;
774 lu_byte tag;
775 lua_lock(L);
776 t = gettable(L, idx);
777 luaH_fastgeti(t, n, s2v(L->top.p), tag);
778 return finishrawget(L, tag);
779}
780
781
782LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p) {

Callers 5

pushargsFunction · 0.70
luaL_refFunction · 0.70
luaL_unrefFunction · 0.70
findloaderFunction · 0.70
lua_pushglobaltableFunction · 0.50

Calls 2

gettableFunction · 0.70
finishrawgetFunction · 0.70

Tested by

no test coverage detected