Skip to main content

boa/
gc.rs

1//! This module represents the main way to interact with the garbage collector.
2
3// This is because `rust-gc` unsafe_empty_trace has a `unsafe_`
4// when it should be `empty_trace`.
5#![allow(clippy::unsafe_removed_from_name)]
6
7pub use gc::{
8    custom_trace, force_collect, unsafe_empty_trace as empty_trace, Finalize, GcCellRef as Ref,
9    GcCellRefMut as RefMut, Trace,
10};