Skip to content

Commit 9ef750b

Browse files
committed
Adjust access modifiers
1 parent d6c3b54 commit 9ef750b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zenlang/src/compiler.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ use alloc::vec::*;
1111
pub struct Compiler<'a> {
1212
parser: &'a mut Parser<'a>,
1313
module: Module,
14-
pub while_stmts_break_indexes: Vec<Vec<usize>>,
15-
pub while_stmts_continue_indexes: Vec<Vec<usize>>,
14+
pub(crate) while_stmts_break_indexes: Vec<Vec<usize>>,
15+
pub(crate) while_stmts_continue_indexes: Vec<Vec<usize>>,
1616
pub warnings: Vec<String>,
1717
}
1818

0 commit comments

Comments
 (0)