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