** if key is not marked, mark its entry as dead (therefore removing it ** from the table) */
| 105 | ** from the table) |
| 106 | */ |
| 107 | static void removeentry (Node *n) { |
| 108 | lua_assert(ttisnil(gval(n))); |
| 109 | if (valiswhite(gkey(n))) |
| 110 | setdeadvalue(gkey(n)); /* unused and unmarked key; remove it */ |
| 111 | } |
| 112 | |
| 113 | |
| 114 | /* |
no outgoing calls
no test coverage detected