| 60 | |
| 61 | |
| 62 | static void removeentry (Node *n) { |
| 63 | lua_assert(ttisnil(gval(n))); |
| 64 | if (iscollectable(gkey(n))) |
| 65 | setttype(gkey(n), LUA_TDEADKEY); /* dead key; remove it */ |
| 66 | } |
| 67 | |
| 68 | |
| 69 | static void reallymarkobject (global_State *g, GCObject *o) { |
no outgoing calls
no test coverage detected