fix pub(crate) instead of pub on Info::Global

This commit is contained in:
Mark 2024-03-22 16:19:36 +01:00
parent dab8fd9584
commit 45f0fe7c90

View File

@ -3,7 +3,7 @@ use std::fmt::Debug;
#[derive(Clone, Debug)]
pub struct Info<L: Local> {
pub scopes: Vec<L>,
pub(crate) global: L::Global,
pub global: L::Global,
}
impl<L: Local> Info<L> {