fixed more leaks

This commit is contained in:
nora 2021-12-30 20:07:27 +01:00
parent 1ad5ea7477
commit e58e6e3dc4
6 changed files with 31 additions and 38 deletions

View file

@ -6,7 +6,7 @@ use std::ops::Deref;
use std::ptr::NonNull;
/// imagine interning or something here
pub type Symbol<'ast> = bumpalo::collections::String<'ast>;
pub type AstSymbol<'ast> = &'ast str;
/// here is the actual interning or something
pub type NewSym = Gc<str>;