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

Function luaF_unlinkupval

third-party/lua-5.5.0/src/lfunc.c:186–191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

luaF_closeupvalFunction · 0.70
freeupvalFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected