boa_gc 0.21.1

Garbage collector for the Boa JavaScript engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Pointers represents the External types returned by the Boa Garbage Collector

mod ephemeron;
mod gc;
mod weak;
mod weak_map;

pub use ephemeron::Ephemeron;
pub use gc::{Gc, GcErased};
pub use weak::WeakGc;
pub use weak_map::WeakMap;

pub(crate) use gc::NonTraceable;
pub(crate) use weak_map::RawWeakMap;