rust/crates/ra_assists/src/assists/invert_if.rs

103 lines
2.9 KiB
Rust
Raw Normal View History

2019-11-21 12:51:40 -06:00
use hir::db::HirDatabase;
use ra_syntax::ast::{self, AstNode};
2019-11-23 23:14:57 -06:00
use ra_syntax::T;
2019-11-21 12:51:40 -06:00
2019-11-21 13:18:22 -06:00
use crate::{Assist, AssistCtx, AssistId};
2019-11-21 12:51:40 -06:00
// Assist: invert_if
//
// Apply invert_if
// This transforms if expressions of the form `if !x {A} else {B}` into `if x {B} else {A}`
// This also works with `!=`. This assist can only be applied with the cursor
// on `if`.
//
// ```
// fn main() {
2019-11-23 23:14:57 -06:00
// if<|> !y { A } else { B }
2019-11-21 12:51:40 -06:00
// }
// ```
// ->
// ```
// fn main() {
2019-11-23 23:14:57 -06:00
// if y { B } else { A }
2019-11-21 12:51:40 -06:00
// }
// ```
pub(crate) fn invert_if(ctx: AssistCtx<impl HirDatabase>) -> Option<Assist> {
2019-11-23 23:14:57 -06:00
let if_keyword = ctx.find_token_at_offset(T![if])?;
let expr = ast::IfExpr::cast(if_keyword.parent())?;
let if_range = if_keyword.text_range();
2019-11-21 12:51:40 -06:00
let cursor_in_range = ctx.frange.range.is_subrange(&if_range);
if !cursor_in_range {
return None;
}
2019-11-23 23:14:57 -06:00
let cond = expr.condition()?.expr()?;
2019-11-21 12:51:40 -06:00
let then_node = expr.then_branch()?.syntax().clone();
if let ast::ElseBranch::Block(else_block) = expr.else_branch()? {
2019-11-23 23:14:57 -06:00
let flip_cond = invert_boolean_expression(&cond)?;
let cond_range = cond.syntax().text_range();
2019-11-21 12:51:40 -06:00
let else_node = else_block.syntax();
let else_range = else_node.text_range();
let then_range = then_node.text_range();
2020-01-14 11:32:26 -06:00
return ctx.add_assist(AssistId("invert_if"), "Invert if", |edit| {
2019-11-21 12:51:40 -06:00
edit.target(if_range);
2019-11-23 23:14:57 -06:00
edit.replace(cond_range, flip_cond.syntax().text());
2019-11-21 12:51:40 -06:00
edit.replace(else_range, then_node.text());
edit.replace(then_range, else_node.text());
2019-11-23 23:14:57 -06:00
});
}
None
}
pub(crate) fn invert_boolean_expression(expr: &ast::Expr) -> Option<ast::Expr> {
match expr {
ast::Expr::BinExpr(bin) => match bin.op_kind()? {
ast::BinOp::NegatedEqualityTest => bin.replace_op(T![==]).map(|it| it.into()),
_ => None,
},
ast::Expr::PrefixExpr(pe) => match pe.op_kind()? {
ast::PrefixOp::Not => pe.expr(),
_ => None,
},
_ => None,
2019-11-21 12:51:40 -06:00
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::helpers::{check_assist, check_assist_not_applicable};
#[test]
fn invert_if_remove_inequality() {
2019-11-21 13:18:22 -06:00
check_assist(
invert_if,
2019-11-23 23:14:57 -06:00
"fn f() { i<|>f x != 3 { 1 } else { 3 + 2 } }",
"fn f() { i<|>f x == 3 { 3 + 2 } else { 1 } }",
2019-11-21 13:18:22 -06:00
)
2019-11-21 12:51:40 -06:00
}
#[test]
fn invert_if_remove_not() {
2019-11-21 13:18:22 -06:00
check_assist(
invert_if,
2019-11-23 23:14:57 -06:00
"fn f() { <|>if !cond { 3 * 2 } else { 1 } }",
"fn f() { <|>if cond { 1 } else { 3 * 2 } }",
2019-11-21 13:18:22 -06:00
)
2019-11-21 12:51:40 -06:00
}
#[test]
fn invert_if_doesnt_apply_with_cursor_not_on_if() {
2019-11-23 23:14:57 -06:00
check_assist_not_applicable(invert_if, "fn f() { if !<|>cond { 3 * 2 } else { 1 } }")
2019-11-21 12:51:40 -06:00
}
#[test]
fn invert_if_doesnt_apply_without_negated() {
2019-11-23 23:14:57 -06:00
check_assist_not_applicable(invert_if, "fn f() { i<|>f cond { 3 * 2 } else { 1 } }")
2019-11-21 12:51:40 -06:00
}
}