This commit is contained in:
nora 2022-01-01 15:12:26 +01:00
parent 15429e67dc
commit ffeec8e192
3 changed files with 30 additions and 1 deletions

View file

@ -1,4 +1,6 @@
#![allow(dead_code)]
//! The garbage collector for the language
//!
//! The structure of the GC might change, but for now it's simply a `LinkedList` of `Object`s.
use crate::vm::Value;
use crate::{HashMap, HashSet};