Skip to content

Commit aa1234e

Browse files
committed
Generalize invert_if to just always work
1 parent 5aba5a7 commit aa1234e

File tree

3 files changed

+35
-18
lines changed

3 files changed

+35
-18
lines changed

crates/ra_assists/src/assists/apply_demorgan.rs

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,14 @@ pub(crate) fn apply_demorgan(ctx: AssistCtx) -> Option<Assist> {
3131
if !cursor_in_range {
3232
return None;
3333
}
34+
3435
let lhs = expr.lhs()?;
3536
let lhs_range = lhs.syntax().text_range();
37+
let not_lhs = invert_boolean_expression(lhs);
38+
3639
let rhs = expr.rhs()?;
3740
let rhs_range = rhs.syntax().text_range();
38-
let not_lhs = invert_boolean_expression(&lhs)?;
39-
let not_rhs = invert_boolean_expression(&rhs)?;
41+
let not_rhs = invert_boolean_expression(rhs);
4042

4143
ctx.add_assist(AssistId("apply_demorgan"), "Apply De Morgan's law", |edit| {
4244
edit.target(op_range);
@@ -77,12 +79,12 @@ mod tests {
7779
}
7880

7981
#[test]
80-
fn demorgan_doesnt_apply_with_cursor_not_on_op() {
81-
check_assist_not_applicable(apply_demorgan, "fn f() { <|> !x || !x }")
82+
fn demorgan_general_case() {
83+
check_assist(apply_demorgan, "fn f() { x ||<|> x }", "fn f() { !(!x &&<|> !x) }")
8284
}
8385

8486
#[test]
85-
fn demorgan_doesnt_apply_when_operands_arent_negated_already() {
86-
check_assist_not_applicable(apply_demorgan, "fn f() { x ||<|> x }")
87+
fn demorgan_doesnt_apply_with_cursor_not_on_op() {
88+
check_assist_not_applicable(apply_demorgan, "fn f() { <|> !x || !x }")
8789
}
8890
}

crates/ra_assists/src/assists/invert_if.rs

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use ra_syntax::ast::{self, AstNode};
1+
use ra_syntax::ast::{self, make, AstNode};
22
use ra_syntax::T;
33

44
use crate::{Assist, AssistCtx, AssistId};
@@ -35,8 +35,8 @@ pub(crate) fn invert_if(ctx: AssistCtx) -> Option<Assist> {
3535
let then_node = expr.then_branch()?.syntax().clone();
3636

3737
if let ast::ElseBranch::Block(else_block) = expr.else_branch()? {
38-
let flip_cond = invert_boolean_expression(&cond)?;
3938
let cond_range = cond.syntax().text_range();
39+
let flip_cond = invert_boolean_expression(cond);
4040
let else_node = else_block.syntax();
4141
let else_range = else_node.text_range();
4242
let then_range = then_node.text_range();
@@ -51,16 +51,23 @@ pub(crate) fn invert_if(ctx: AssistCtx) -> Option<Assist> {
5151
None
5252
}
5353

54-
pub(crate) fn invert_boolean_expression(expr: &ast::Expr) -> Option<ast::Expr> {
54+
pub(crate) fn invert_boolean_expression(expr: ast::Expr) -> ast::Expr {
55+
if let Some(expr) = invert_special_case(&expr) {
56+
return expr;
57+
}
58+
make::expr_prefix(T![!], expr)
59+
}
60+
61+
pub(crate) fn invert_special_case(expr: &ast::Expr) -> Option<ast::Expr> {
5562
match expr {
5663
ast::Expr::BinExpr(bin) => match bin.op_kind()? {
5764
ast::BinOp::NegatedEqualityTest => bin.replace_op(T![==]).map(|it| it.into()),
65+
ast::BinOp::EqualityTest => bin.replace_op(T![!=]).map(|it| it.into()),
5866
_ => None,
5967
},
60-
ast::Expr::PrefixExpr(pe) => match pe.op_kind()? {
61-
ast::PrefixOp::Not => pe.expr(),
62-
_ => None,
63-
},
68+
ast::Expr::PrefixExpr(pe) if pe.op_kind()? == ast::PrefixOp::Not => pe.expr(),
69+
// FIXME:
70+
// ast::Expr::Literal(true | false )
6471
_ => None,
6572
}
6673
}
@@ -90,12 +97,16 @@ mod tests {
9097
}
9198

9299
#[test]
93-
fn invert_if_doesnt_apply_with_cursor_not_on_if() {
94-
check_assist_not_applicable(invert_if, "fn f() { if !<|>cond { 3 * 2 } else { 1 } }")
100+
fn invert_if_general_case() {
101+
check_assist(
102+
invert_if,
103+
"fn f() { i<|>f cond { 3 * 2 } else { 1 } }",
104+
"fn f() { i<|>f !cond { 1 } else { 3 * 2 } }",
105+
)
95106
}
96107

97108
#[test]
98-
fn invert_if_doesnt_apply_without_negated() {
99-
check_assist_not_applicable(invert_if, "fn f() { i<|>f cond { 3 * 2 } else { 1 } }")
109+
fn invert_if_doesnt_apply_with_cursor_not_on_if() {
110+
check_assist_not_applicable(invert_if, "fn f() { if !<|>cond { 3 * 2 } else { 1 } }")
100111
}
101112
}

crates/ra_syntax/src/ast/make.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ pub fn expr_return() -> ast::Expr {
6262
pub fn expr_match(expr: ast::Expr, match_arm_list: ast::MatchArmList) -> ast::Expr {
6363
expr_from_text(&format!("match {} {}", expr.syntax(), match_arm_list.syntax()))
6464
}
65+
pub fn expr_prefix(op: SyntaxKind, expr: ast::Expr) -> ast::Expr {
66+
let token = token(op);
67+
expr_from_text(&format!("{}{}", token, expr.syntax()))
68+
}
6569
fn expr_from_text(text: &str) -> ast::Expr {
6670
ast_from_text(&format!("const C: () = {};", text))
6771
}
@@ -203,7 +207,7 @@ pub mod tokens {
203207
use once_cell::sync::Lazy;
204208

205209
pub(super) static SOURCE_FILE: Lazy<Parse<SourceFile>> =
206-
Lazy::new(|| SourceFile::parse("const C: <()>::Item = (1 != 1, 2 == 2)\n;"));
210+
Lazy::new(|| SourceFile::parse("const C: <()>::Item = (1 != 1, 2 == 2, !true)\n;"));
207211

208212
pub fn comma() -> SyntaxToken {
209213
SOURCE_FILE

0 commit comments

Comments
 (0)