MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / luaF_unlinkupval

Function luaF_unlinkupval

3rd/lua-5.4.3/src/lfunc.c:183–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181
182
183void luaF_unlinkupval (UpVal *uv) {
184 lua_assert(upisopen(uv));
185 *uv->u.open.previous = uv->u.open.next;
186 if (uv->u.open.next)
187 uv->u.open.next->u.open.previous = uv->u.open.previous;
188}
189
190
191/*

Callers 2

luaF_closeupvalFunction · 0.85
freeupvalFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected