mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 21:13:37 +00:00
minor: Migrate remove_unnecessary_wrapper
to SyntaxEditor
This commit is contained in:
parent
59cd717602
commit
68b85ce66f
2 changed files with 63 additions and 20 deletions
|
@ -9,9 +9,10 @@ use syntax::{
|
||||||
ast::{
|
ast::{
|
||||||
self,
|
self,
|
||||||
edit::{AstNodeEdit, IndentLevel},
|
edit::{AstNodeEdit, IndentLevel},
|
||||||
make, BlockExpr, Expr, ExprStmt, HasArgList,
|
syntax_factory::SyntaxFactory,
|
||||||
|
BlockExpr, Expr, ExprStmt, HasArgList,
|
||||||
},
|
},
|
||||||
ted, AstNode, AstPtr, TextSize,
|
AstNode, AstPtr, TextSize,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{adjusted_display_range, fix, Assist, Diagnostic, DiagnosticCode, DiagnosticsContext};
|
use crate::{adjusted_display_range, fix, Assist, Diagnostic, DiagnosticCode, DiagnosticsContext};
|
||||||
|
@ -223,8 +224,9 @@ fn remove_unnecessary_wrapper(
|
||||||
|
|
||||||
let inner_arg = call_expr.arg_list()?.args().next()?;
|
let inner_arg = call_expr.arg_list()?.args().next()?;
|
||||||
|
|
||||||
let mut builder = SourceChangeBuilder::new(expr_ptr.file_id.original_file(ctx.sema.db));
|
let file_id = expr_ptr.file_id.original_file(db);
|
||||||
|
let mut builder = SourceChangeBuilder::new(file_id);
|
||||||
|
let mut editor;
|
||||||
match inner_arg {
|
match inner_arg {
|
||||||
// We're returning `()`
|
// We're returning `()`
|
||||||
Expr::TupleExpr(tup) if tup.fields().next().is_none() => {
|
Expr::TupleExpr(tup) if tup.fields().next().is_none() => {
|
||||||
|
@ -233,35 +235,33 @@ fn remove_unnecessary_wrapper(
|
||||||
.parent()
|
.parent()
|
||||||
.and_then(Either::<ast::ReturnExpr, ast::StmtList>::cast)?;
|
.and_then(Either::<ast::ReturnExpr, ast::StmtList>::cast)?;
|
||||||
|
|
||||||
|
editor = builder.make_editor(parent.syntax());
|
||||||
|
let make = SyntaxFactory::new();
|
||||||
|
|
||||||
match parent {
|
match parent {
|
||||||
Either::Left(ret_expr) => {
|
Either::Left(ret_expr) => {
|
||||||
let old = builder.make_mut(ret_expr);
|
editor.replace(ret_expr.syntax(), make.expr_return(None).syntax());
|
||||||
let new = make::expr_return(None).clone_for_update();
|
|
||||||
|
|
||||||
ted::replace(old.syntax(), new.syntax());
|
|
||||||
}
|
}
|
||||||
Either::Right(stmt_list) => {
|
Either::Right(stmt_list) => {
|
||||||
if stmt_list.statements().count() == 0 {
|
let new_block = if stmt_list.statements().next().is_none() {
|
||||||
let block = stmt_list.syntax().parent().and_then(ast::BlockExpr::cast)?;
|
make.expr_empty_block()
|
||||||
let old = builder.make_mut(block);
|
|
||||||
let new = make::expr_empty_block().clone_for_update();
|
|
||||||
|
|
||||||
ted::replace(old.syntax(), new.syntax());
|
|
||||||
} else {
|
} else {
|
||||||
let old = builder.make_syntax_mut(stmt_list.syntax().parent()?);
|
make.block_expr(stmt_list.statements(), None)
|
||||||
let new = make::block_expr(stmt_list.statements(), None).clone_for_update();
|
};
|
||||||
|
|
||||||
ted::replace(old, new.syntax());
|
editor.replace(stmt_list.syntax().parent()?, new_block.syntax());
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
editor.add_mappings(make.finish_with_mappings());
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
let call_mut = builder.make_mut(call_expr.clone());
|
editor = builder.make_editor(call_expr.syntax());
|
||||||
ted::replace(call_mut.syntax(), inner_arg.clone_for_update().syntax());
|
editor.replace(call_expr.syntax(), inner_arg.syntax());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
builder.add_file_edits(file_id, editor);
|
||||||
let name = format!("Remove unnecessary {}() wrapper", variant.name(db).as_str());
|
let name = format!("Remove unnecessary {}() wrapper", variant.name(db).as_str());
|
||||||
acc.push(fix(
|
acc.push(fix(
|
||||||
"remove_unnecessary_wrapper",
|
"remove_unnecessary_wrapper",
|
||||||
|
@ -848,6 +848,29 @@ fn div(x: i32, y: i32) -> i32 {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn unwrap_return_type_option_tail_unit() {
|
||||||
|
check_fix(
|
||||||
|
r#"
|
||||||
|
//- minicore: option, result
|
||||||
|
fn div(x: i32, y: i32) {
|
||||||
|
if y == 0 {
|
||||||
|
panic!();
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())$0
|
||||||
|
}
|
||||||
|
"#,
|
||||||
|
r#"
|
||||||
|
fn div(x: i32, y: i32) {
|
||||||
|
if y == 0 {
|
||||||
|
panic!();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn unwrap_return_type_handles_generic_functions() {
|
fn unwrap_return_type_handles_generic_functions() {
|
||||||
check_fix(
|
check_fix(
|
||||||
|
|
|
@ -89,6 +89,10 @@ impl SyntaxFactory {
|
||||||
ast
|
ast
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn expr_empty_block(&self) -> ast::BlockExpr {
|
||||||
|
ast::BlockExpr { syntax: make::expr_empty_block().syntax().clone_for_update() }
|
||||||
|
}
|
||||||
|
|
||||||
pub fn expr_bin(&self, lhs: ast::Expr, op: ast::BinaryOp, rhs: ast::Expr) -> ast::BinExpr {
|
pub fn expr_bin(&self, lhs: ast::Expr, op: ast::BinaryOp, rhs: ast::Expr) -> ast::BinExpr {
|
||||||
let ast::Expr::BinExpr(ast) =
|
let ast::Expr::BinExpr(ast) =
|
||||||
make::expr_bin_op(lhs.clone(), op, rhs.clone()).clone_for_update()
|
make::expr_bin_op(lhs.clone(), op, rhs.clone()).clone_for_update()
|
||||||
|
@ -135,6 +139,22 @@ impl SyntaxFactory {
|
||||||
ast.into()
|
ast.into()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn expr_return(&self, expr: Option<ast::Expr>) -> ast::ReturnExpr {
|
||||||
|
let ast::Expr::ReturnExpr(ast) = make::expr_return(expr.clone()).clone_for_update() else {
|
||||||
|
unreachable!()
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Some(mut mapping) = self.mappings() {
|
||||||
|
let mut builder = SyntaxMappingBuilder::new(ast.syntax().clone());
|
||||||
|
if let Some(input) = expr {
|
||||||
|
builder.map_node(input.syntax().clone(), ast.expr().unwrap().syntax().clone());
|
||||||
|
}
|
||||||
|
builder.finish(&mut mapping);
|
||||||
|
}
|
||||||
|
|
||||||
|
ast
|
||||||
|
}
|
||||||
|
|
||||||
pub fn let_stmt(
|
pub fn let_stmt(
|
||||||
&self,
|
&self,
|
||||||
pattern: ast::Pat,
|
pattern: ast::Pat,
|
||||||
|
|
Loading…
Reference in a new issue