Files
simple-rust-tests/__wasm/wit-bindgen-sample/engine/boa/boa_gc/src/lib.rs
2022-07-17 10:11:20 +08:00

7 lines
223 B
Rust

//! Garbage collector for the Boa JavaScript engine.
pub use gc::{
custom_trace, finalizer_safe, force_collect, unsafe_empty_trace, Finalize, Gc, GcCell as Cell,
GcCellRef as Ref, GcCellRefMut as RefMut, Trace,
};