| 6686 | |
| 6687 | |
| 6688 | void luaC_link (lua_State *L, GCObject *o, lu_byte tt) { |
| 6689 | global_State *g = G(L); |
| 6690 | o->gch.next = g->rootgc; |
| 6691 | g->rootgc = o; |
| 6692 | o->gch.marked = luaC_white(g); |
| 6693 | o->gch.tt = tt; |
| 6694 | } |
| 6695 | |
| 6696 | |
| 6697 | void luaC_linkupval (lua_State *L, UpVal *uv) { |
no outgoing calls
no test coverage detected