diff options
Diffstat (limited to 'crates/ra_syntax/src/ast/make.rs')
-rw-r--r-- | crates/ra_syntax/src/ast/make.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast/make.rs b/crates/ra_syntax/src/ast/make.rs index 629503dc5..02966a3ff 100644 --- a/crates/ra_syntax/src/ast/make.rs +++ b/crates/ra_syntax/src/ast/make.rs | |||
@@ -158,7 +158,7 @@ pub fn where_clause(preds: impl IntoIterator<Item = ast::WherePred>) -> ast::Whe | |||
158 | } | 158 | } |
159 | } | 159 | } |
160 | 160 | ||
161 | pub fn if_expression(condition: &ast::Expr, statement: &str) -> ast::IfExpr { | 161 | pub fn if_expression(condition: ast::Expr, statement: &str) -> ast::IfExpr { |
162 | ast_from_text(&format!( | 162 | ast_from_text(&format!( |
163 | "fn f() {{ if !{} {{\n {}\n}}\n}}", | 163 | "fn f() {{ if !{} {{\n {}\n}}\n}}", |
164 | condition.syntax().text(), | 164 | condition.syntax().text(), |