| 684 | |
| 685 | |
| 686 | void luaC_link (lua_State *L, GCObject *o, lu_byte tt) { |
| 687 | global_State *g = G(L); |
| 688 | o->gch.next = g->rootgc; |
| 689 | g->rootgc = o; |
| 690 | o->gch.marked = luaC_white(g); |
| 691 | o->gch.tt = tt; |
| 692 | } |
| 693 | |
| 694 | |
| 695 | void luaC_linkupval (lua_State *L, UpVal *uv) { |
no test coverage detected