Skip to content

Commit e00297d

Browse files
committed
apply clippy suggestions
1 parent 5e9d985 commit e00297d

File tree

4 files changed

+26
-26
lines changed

4 files changed

+26
-26
lines changed

ast/src/builtin.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ pub enum Constant {
128128

129129
impl Constant {
130130
pub fn is_true(self) -> bool {
131-
self.bool().map_or(false, |b| b)
131+
self.bool().is_some_and(|b| b)
132132
}
133133
pub fn is_false(self) -> bool {
134-
self.bool().map_or(false, |b| !b)
134+
self.bool().is_some_and(|b| !b)
135135
}
136136
pub fn complex(self) -> Option<(f64, f64)> {
137137
match self {

literal/src/escape.rs

+20-20
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ impl UnicodeEscape<'_> {
232232
}
233233
}
234234

235-
impl<'a> Escape for UnicodeEscape<'a> {
235+
impl Escape for UnicodeEscape<'_> {
236236
fn source_len(&self) -> usize {
237237
self.source.len()
238238
}
@@ -254,24 +254,6 @@ impl<'a> Escape for UnicodeEscape<'a> {
254254
}
255255
}
256256

257-
#[cfg(test)]
258-
mod unicode_escape_tests {
259-
use super::*;
260-
261-
#[test]
262-
fn changed() {
263-
fn test(s: &str) -> bool {
264-
UnicodeEscape::new_repr(s).changed()
265-
}
266-
assert!(!test("hello"));
267-
assert!(!test("'hello'"));
268-
assert!(!test("\"hello\""));
269-
270-
assert!(test("'\"hello"));
271-
assert!(test("hello\n"));
272-
}
273-
}
274-
275257
pub struct AsciiEscape<'a> {
276258
source: &'a [u8],
277259
layout: EscapeLayout,
@@ -391,7 +373,7 @@ impl AsciiEscape<'_> {
391373
}
392374
}
393375

394-
impl<'a> Escape for AsciiEscape<'a> {
376+
impl Escape for AsciiEscape<'_> {
395377
fn source_len(&self) -> usize {
396378
self.source.len()
397379
}
@@ -439,3 +421,21 @@ impl std::fmt::Display for BytesRepr<'_, '_> {
439421
self.write(formatter)
440422
}
441423
}
424+
425+
#[cfg(test)]
426+
mod unicode_escape_tests {
427+
use super::*;
428+
429+
#[test]
430+
fn changed() {
431+
fn test(s: &str) -> bool {
432+
UnicodeEscape::new_repr(s).changed()
433+
}
434+
assert!(!test("hello"));
435+
assert!(!test("'hello'"));
436+
assert!(!test("\"hello\""));
437+
438+
assert!(test("'\"hello"));
439+
assert!(test("hello\n"));
440+
}
441+
}

literal/src/float.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ fn trim_slice<T>(v: &[T], mut trim: impl FnMut(&T) -> bool) -> &[T] {
4242
// it.take_while_ref(&mut trim).for_each(drop);
4343
// hmm.. `&mut slice::Iter<_>` is not `Clone`
4444
// it.by_ref().rev().take_while_ref(&mut trim).for_each(drop);
45-
while it.clone().next().map_or(false, &mut trim) {
45+
while it.clone().next().is_some_and(&mut trim) {
4646
it.next();
4747
}
48-
while it.clone().next_back().map_or(false, &mut trim) {
48+
while it.clone().next_back().is_some_and(&mut trim) {
4949
it.next_back();
5050
}
5151
it.as_slice()

parser/src/soft_keywords.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ where
132132
}
133133
}
134134

135-
self.start_of_line = next.as_ref().map_or(false, |lex_result| {
136-
lex_result.as_ref().map_or(false, |(tok, _)| {
135+
self.start_of_line = next.as_ref().is_some_and(|lex_result| {
136+
lex_result.as_ref().is_ok_and(|(tok, _)| {
137137
#[cfg(feature = "full-lexer")]
138138
if matches!(tok, Tok::NonLogicalNewline | Tok::Comment { .. }) {
139139
return self.start_of_line;

0 commit comments

Comments
 (0)