Skip to content

Commit ae24f83

Browse files
committed
rearrange
1 parent fcd2975 commit ae24f83

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

compiler/parser/src/lexer.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,13 @@ where
147147

148148
pub struct Lexer<T: Iterator<Item = char>> {
149149
chars: T,
150+
window: CharWindow<3>,
151+
150152
at_begin_of_line: bool,
151153
nesting: usize, // Amount of parenthesis
152154
indentations: Indentations,
155+
153156
pending: Vec<Spanned>,
154-
window: CharWindow<3>,
155157
location: Location,
156158
}
157159

0 commit comments

Comments
 (0)