diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-02-05 13:20:32 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-05 13:20:32 +0000 |
commit | 8d0f7da2f5f2ae1dc5711005f08fde0007da165b (patch) | |
tree | 24f302e769cd8d2e27b6ab7a39b2df1376b65660 /crates/ra_syntax/src/ast | |
parent | 83dc22e1fb4ff4897d911c18884259823edb68ba (diff) | |
parent | a4c6e8c4e22ddea9668eb3380603ad53d8ce6a5e (diff) |
Merge #3018
3018: Refactor if-let -> match assist to use ast::make r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_syntax/src/ast')
-rw-r--r-- | crates/ra_syntax/src/ast/expr_extensions.rs | 15 | ||||
-rw-r--r-- | crates/ra_syntax/src/ast/make.rs | 13 |
2 files changed, 25 insertions, 3 deletions
diff --git a/crates/ra_syntax/src/ast/expr_extensions.rs b/crates/ra_syntax/src/ast/expr_extensions.rs index 539759450..2e50a095c 100644 --- a/crates/ra_syntax/src/ast/expr_extensions.rs +++ b/crates/ra_syntax/src/ast/expr_extensions.rs | |||
@@ -7,6 +7,21 @@ use crate::{ | |||
7 | SyntaxToken, T, | 7 | SyntaxToken, T, |
8 | }; | 8 | }; |
9 | 9 | ||
10 | impl ast::Expr { | ||
11 | pub fn is_block_like(&self) -> bool { | ||
12 | match self { | ||
13 | ast::Expr::IfExpr(_) | ||
14 | | ast::Expr::LoopExpr(_) | ||
15 | | ast::Expr::ForExpr(_) | ||
16 | | ast::Expr::WhileExpr(_) | ||
17 | | ast::Expr::BlockExpr(_) | ||
18 | | ast::Expr::MatchExpr(_) | ||
19 | | ast::Expr::TryBlockExpr(_) => true, | ||
20 | _ => false, | ||
21 | } | ||
22 | } | ||
23 | } | ||
24 | |||
10 | #[derive(Debug, Clone, PartialEq, Eq)] | 25 | #[derive(Debug, Clone, PartialEq, Eq)] |
11 | pub enum ElseBranch { | 26 | pub enum ElseBranch { |
12 | Block(ast::BlockExpr), | 27 | Block(ast::BlockExpr), |
diff --git a/crates/ra_syntax/src/ast/make.rs b/crates/ra_syntax/src/ast/make.rs index 38c0e9a66..629503dc5 100644 --- a/crates/ra_syntax/src/ast/make.rs +++ b/crates/ra_syntax/src/ast/make.rs | |||
@@ -122,11 +122,18 @@ pub fn match_arm(pats: impl IntoIterator<Item = ast::Pat>, expr: ast::Expr) -> a | |||
122 | } | 122 | } |
123 | 123 | ||
124 | pub fn match_arm_list(arms: impl IntoIterator<Item = ast::MatchArm>) -> ast::MatchArmList { | 124 | pub fn match_arm_list(arms: impl IntoIterator<Item = ast::MatchArm>) -> ast::MatchArmList { |
125 | let arms_str = arms.into_iter().map(|arm| format!("\n {}", arm.syntax())).join(","); | 125 | let arms_str = arms |
126 | return from_text(&format!("{},\n", arms_str)); | 126 | .into_iter() |
127 | .map(|arm| { | ||
128 | let needs_comma = arm.expr().map_or(true, |it| !it.is_block_like()); | ||
129 | let comma = if needs_comma { "," } else { "" }; | ||
130 | format!(" {}{}\n", arm.syntax(), comma) | ||
131 | }) | ||
132 | .collect::<String>(); | ||
133 | return from_text(&format!("{}", arms_str)); | ||
127 | 134 | ||
128 | fn from_text(text: &str) -> ast::MatchArmList { | 135 | fn from_text(text: &str) -> ast::MatchArmList { |
129 | ast_from_text(&format!("fn f() {{ match () {{{}}} }}", text)) | 136 | ast_from_text(&format!("fn f() {{ match () {{\n{}}} }}", text)) |
130 | } | 137 | } |
131 | } | 138 | } |
132 | 139 | ||