MCPcopy Create free account
hub / github.com/crownengine/crown / lua_abs_index

Function lua_abs_index

src/lua/lua_api.cpp:539–545  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

537}
538
539static int lua_abs_index(lua_State *L, int i)
540{
541 return i > 0 || i <= LUA_REGISTRYINDEX
542 ? i
543 : lua_gettop(L) + i + 1
544 ;
545}
546
547static void lua_save_data_write_indent(StringStream &sjson, u32 depth)
548{

Calls 1

lua_gettopFunction · 0.50

Tested by

no test coverage detected