Make CodeStat's type sizes a public field

This commit is contained in:
blyxyas 2025-04-15 19:01:35 +02:00
parent 40dacd50b7
commit 6999305926

View file

@ -72,7 +72,7 @@ pub struct TypeSizeInfo {
#[derive(Default)]
pub struct CodeStats {
type_sizes: Lock<FxHashSet<TypeSizeInfo>>,
pub type_sizes: Lock<FxHashSet<TypeSizeInfo>>,
}
impl CodeStats {