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