mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 05:38:46 +00:00
Fix clippy::match_ref_pats
This commit is contained in:
parent
dddcb0ad94
commit
b9af1d7c42
2 changed files with 9 additions and 9 deletions
|
@ -133,9 +133,9 @@ impl<'a> Edits<'a> {
|
|||
}
|
||||
|
||||
fn next_steps(&mut self, step: &Step) -> NextSteps {
|
||||
let step_pos = match step {
|
||||
&Step::Newline(n) => n,
|
||||
&Step::Utf16Char(r) => r.end(),
|
||||
let step_pos = match *step {
|
||||
Step::Newline(n) => n,
|
||||
Step::Utf16Char(r) => r.end(),
|
||||
};
|
||||
let res = match &mut self.current {
|
||||
Some(edit) => {
|
||||
|
@ -181,9 +181,9 @@ impl<'a> Edits<'a> {
|
|||
if self.acc_diff == 0 {
|
||||
x.clone()
|
||||
} else {
|
||||
match x {
|
||||
&Step::Newline(n) => Step::Newline(self.translate(n)),
|
||||
&Step::Utf16Char(r) => Step::Utf16Char(self.translate_range(r)),
|
||||
match *x {
|
||||
Step::Newline(n) => Step::Newline(self.translate(n)),
|
||||
Step::Utf16Char(r) => Step::Utf16Char(self.translate_range(r)),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -42,8 +42,8 @@ pub fn arb_text_edit(text: &str) -> BoxedStrategy<TextEdit> {
|
|||
.prop_flat_map(|cuts| {
|
||||
let strategies: Vec<_> = cuts
|
||||
.chunks(2)
|
||||
.map(|chunk| match chunk {
|
||||
&[from, to] => {
|
||||
.map(|chunk| match *chunk {
|
||||
[from, to] => {
|
||||
let range = TextRange::from_to(from, to);
|
||||
Just(AtomTextEdit::delete(range))
|
||||
.boxed()
|
||||
|
@ -54,7 +54,7 @@ pub fn arb_text_edit(text: &str) -> BoxedStrategy<TextEdit> {
|
|||
)
|
||||
.boxed()
|
||||
}
|
||||
&[x] => arb_text().prop_map(move |text| AtomTextEdit::insert(x, text)).boxed(),
|
||||
[x] => arb_text().prop_map(move |text| AtomTextEdit::insert(x, text)).boxed(),
|
||||
_ => unreachable!(),
|
||||
})
|
||||
.collect();
|
||||
|
|
Loading…
Reference in a new issue