mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
make only used fields pub(crate)
This commit is contained in:
parent
a332d77756
commit
2e6c632fb4
1 changed files with 3 additions and 3 deletions
|
@ -2177,11 +2177,11 @@ macro_rules! list_element_layout {
|
|||
}
|
||||
|
||||
pub struct Env<'a, 'b> {
|
||||
pub(crate) target_info: TargetInfo,
|
||||
target_info: TargetInfo,
|
||||
pub(crate) arena: &'a Bump,
|
||||
pub(crate) seen: Vec<'a, Variable>,
|
||||
seen: Vec<'a, Variable>,
|
||||
pub(crate) subs: &'b Subs,
|
||||
pub(crate) cache: &'b mut LayoutCache<'a>,
|
||||
cache: &'b mut LayoutCache<'a>,
|
||||
}
|
||||
|
||||
impl<'a, 'b> Env<'a, 'b> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue