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

Function luaH_free

third-party/lua-5.5.0/src/ltable.c:822–826  ·  view source on GitHub ↗

** Frees a table. */

Source from the content-addressed store, hash-verified

820** Frees a table.
821*/
822void luaH_free (lua_State *L, Table *t) {
823 freehash(L, t);
824 resizearray(L, t, t->asize, 0);
825 luaM_free(L, t);
826}
827
828
829static Node *getfreepos (Table *t) {

Callers 1

freeobjFunction · 0.70

Calls 2

resizearrayFunction · 0.85
freehashFunction · 0.70

Tested by

no test coverage detected