Makes clippy happy

This commit is contained in:
Diego Reis
2025-09-25 10:39:38 -03:00
parent c945dee62b
commit 7a56c93b81
4 changed files with 20 additions and 23 deletions

View File

@@ -1551,7 +1551,7 @@ impl<'a> Parser<'a> {
b"false" => {
Ok(Box::new(Expr::Literal(Literal::Numeric("0".into()))))
}
_ => return Ok(Box::new(Expr::Id(Name::Ident(s)))),
_ => Ok(Box::new(Expr::Id(Name::Ident(s)))),
})
}
_ => Ok(Box::new(Expr::Id(name))),