diff --git a/parser/src/parser/expr.rs b/parser/src/parser/expr.rs index fe6979b..647e480 100644 --- a/parser/src/parser/expr.rs +++ b/parser/src/parser/expr.rs @@ -52,6 +52,7 @@ where fn expr_bp(&mut self, min_bp: u8) -> Result> { let mut lhs = self.get_lhs()?; + #[allow(clippy::while_let_loop)] // idc loop { let (tok, span) = match self.next_t() { Ok(tok) => tok,