rust-js / rjs

Rust JavaScript interpreter
98 stars 6 forks source link

The GcWalker should not have to be a box #90

Open pvginkel opened 9 years ago

pvginkel commented 9 years ago

Currently GcWalker is a box provided as a parameter to the GcHeap constructor. Ideally it would be a generic parameter on the GcHeap so that the implementation can be inlined into the garbage collector strategy.