MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / luaF_unlinkupval

Function luaF_unlinkupval

extlibs/lua/src/lfunc.c:215–220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213
214
215void luaF_unlinkupval (UpVal *uv) {
216 lua_assert(upisopen(uv));
217 *uv->u.open.previous = uv->u.open.next;
218 if (uv->u.open.next)
219 uv->u.open.next->u.open.previous = uv->u.open.previous;
220}
221
222
223int luaF_close (lua_State *L, StkId level, int status) {

Callers 2

luaF_closeFunction · 0.85
freeupvalFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected