Remove debug messages from lexer

This commit is contained in:
mars 2022-02-28 13:21:35 -07:00
parent bc4d58ffa2
commit 2df63504e0
1 changed files with 0 additions and 2 deletions

View File

@ -133,12 +133,10 @@ impl<'a> Iterator for Lexer<'a> {
fn next(&mut self) -> Option<Self::Item> {
while let Some(tok) = self.inner.next() {
println!("ate: {:?}", tok);
if tok == Token::Newline {
self.line_start = self.inner.span().end;
self.line_num += 1;
} else {
println!("{}", self.get_info());
return Some(tok);
}
}