** Try to create a to-be-closed upvalue ** (can raise a memory-allocation error) */
| 182 | ** (can raise a memory-allocation error) |
| 183 | */ |
| 184 | static void trynewtbcupval (lua_State *L, void *ud) { |
| 185 | newupval(L, 1, cast(StkId, ud), &L->openupval); |
| 186 | } |
| 187 | |
| 188 | |
| 189 | /* |
nothing calls this directly
no test coverage detected