| 569 | |
| 570 | |
| 571 | static void propagatelist (global_State *g, GCObject *l) { |
| 572 | lua_assert(g->gray == NULL); /* no grays left */ |
| 573 | g->gray = l; |
| 574 | propagateall(g); /* traverse all elements from 'l' */ |
| 575 | } |
| 576 | |
| 577 | /* |
| 578 | ** retraverse all gray lists. Because tables may be reinserted in other |
no test coverage detected