Boa 0.13.1

DEPRECATED. Use the boa_engine crate instead.
Documentation
//! This module represents the main way to interact with the garbage collector.

// This is because `rust-gc` unsafe_empty_trace has a `unsafe_`
// when it should be `empty_trace`.
#![allow(clippy::unsafe_removed_from_name)]

pub use gc::{
    custom_trace, force_collect, unsafe_empty_trace as empty_trace, Finalize, GcCellRef as Ref,
    GcCellRefMut as RefMut, Trace,
};