(this: &Context, parent: GcBox)
| 478 | // often) to promote the inlining of the write barrier. |
| 479 | #[cold] |
| 480 | fn barrier(this: &Context, parent: GcBox) { |
| 481 | parent.header().set_color(GcColor::Gray); |
| 482 | this.gray_again.borrow_mut().push(parent); |
| 483 | } |
| 484 | barrier(self, parent); |
| 485 | } |
| 486 | } |
nothing calls this directly
no test coverage detected