This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright (c) 2024 Elric Neumann. All rights reserved. MIT license. | |
#![allow(unused)] | |
use std::rc::Rc; | |
use std::cell::{Cell, RefCell}; | |
use std::collections::{HashMap, HashSet}; | |
pub trait GcObject { | |
fn trace(&self, tracer: &TracingGC); | |
} |