This commit is contained in:
Raptorox 2026-05-21 17:29:30 +02:00
parent 8d2582756d
commit abbf5514e8
No known key found for this signature in database
GPG key ID: 8B3556FC3ED1F6D8

View file

@ -89,7 +89,7 @@ impl Parser {
}
pub fn parse(&mut self) -> Expr {
if self.peek() == None {return Expr::EOL}
if self.peek().is_none() {return Expr::EOL}
self.parse_expr(0)
}
}