mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-09 03:38:47 +00:00
4867968d22
It now duplicates completion API in its shape.
33 lines
912 B
Rust
33 lines
912 B
Rust
use ra_syntax::{SyntaxKind, TextRange, T};
|
|
|
|
use crate::{AssistContext, AssistId, Assists};
|
|
|
|
// Assist: remove_mut
|
|
//
|
|
// Removes the `mut` keyword.
|
|
//
|
|
// ```
|
|
// impl Walrus {
|
|
// fn feed(&mut<|> self, amount: u32) {}
|
|
// }
|
|
// ```
|
|
// ->
|
|
// ```
|
|
// impl Walrus {
|
|
// fn feed(&self, amount: u32) {}
|
|
// }
|
|
// ```
|
|
pub(crate) fn remove_mut(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
|
|
let mut_token = ctx.find_token_at_offset(T![mut])?;
|
|
let delete_from = mut_token.text_range().start();
|
|
let delete_to = match mut_token.next_token() {
|
|
Some(it) if it.kind() == SyntaxKind::WHITESPACE => it.text_range().end(),
|
|
_ => mut_token.text_range().end(),
|
|
};
|
|
|
|
let target = mut_token.text_range();
|
|
acc.add(AssistId("remove_mut"), "Remove `mut` keyword", target, |edit| {
|
|
edit.set_cursor(delete_from);
|
|
edit.delete(TextRange::new(delete_from, delete_to));
|
|
})
|
|
}
|