aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/handlers/remove_mut.rs
blob: 6884830eb614a6e152e44e7f272f2d33fbe4279a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use ra_syntax::{SyntaxKind, TextRange, T};

use crate::{Assist, AssistCtx, AssistId};

// 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(ctx: AssistCtx) -> Option<Assist> {
    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(),
    };

    ctx.add_assist(AssistId("remove_mut"), "Remove `mut` keyword", |edit| {
        edit.set_cursor(delete_from);
        edit.delete(TextRange::from_to(delete_from, delete_to));
    })
}