diff options
author | Jesse Bakker <[email protected]> | 2020-12-21 16:37:38 +0000 |
---|---|---|
committer | Jesse Bakker <[email protected]> | 2020-12-21 16:37:38 +0000 |
commit | 2e7abf83844ef0c7d807262a682941f2aef9d3d9 (patch) | |
tree | 59104f78176ee7ebccb77ab90e9d26f0430d56f9 /crates/assists/src/handlers | |
parent | 9bb9fbab3ab603150990ef8f2df12bddc7104058 (diff) |
Remove parentheses when inverting `!(cond)`
Diffstat (limited to 'crates/assists/src/handlers')
-rw-r--r-- | crates/assists/src/handlers/invert_if.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crates/assists/src/handlers/invert_if.rs b/crates/assists/src/handlers/invert_if.rs index 91e2f5c8c..f9c33b3f7 100644 --- a/crates/assists/src/handlers/invert_if.rs +++ b/crates/assists/src/handlers/invert_if.rs | |||
@@ -78,6 +78,15 @@ mod tests { | |||
78 | } | 78 | } |
79 | 79 | ||
80 | #[test] | 80 | #[test] |
81 | fn invert_if_remove_not_parentheses() { | ||
82 | check_assist( | ||
83 | invert_if, | ||
84 | "fn f() { i<|>f !(x == 3 || x == 4 || x == 5) { 3 * 2 } else { 1 } }", | ||
85 | "fn f() { if x == 3 || x == 4 || x == 5 { 1 } else { 3 * 2 } }", | ||
86 | ) | ||
87 | } | ||
88 | |||
89 | #[test] | ||
81 | fn invert_if_remove_inequality() { | 90 | fn invert_if_remove_inequality() { |
82 | check_assist( | 91 | check_assist( |
83 | invert_if, | 92 | invert_if, |