(&mut self)
| 306 | /// sleep phase. |
| 307 | #[inline] |
| 308 | pub fn collect_all(&mut self) { |
| 309 | unsafe { |
| 310 | self.context |
| 311 | .do_collection(&self.root, f64::NEG_INFINITY, None); |
| 312 | } |
| 313 | } |
| 314 | |
| 315 | /// Runs all of the remaining *marking* part of the current garbage collection cycle. |
| 316 | /// |
nothing calls this directly
no test coverage detected