mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-13 00:17:15 +00:00
fix: autofix for missing wrapped unit in return expr
This commit is contained in:
parent
0319586ef2
commit
a521702d9c
1 changed files with 38 additions and 0 deletions
|
@ -130,6 +130,7 @@ fn add_missing_ok_or_some(
|
|||
if d.actual.is_unit() {
|
||||
if let Expr::BlockExpr(block) = &expr {
|
||||
if block.tail_expr().is_none() {
|
||||
// Fix for forms like `fn foo() -> Result<(), String> {}`
|
||||
let mut builder = TextEdit::builder();
|
||||
let block_indent = block.indent_level();
|
||||
|
||||
|
@ -156,6 +157,20 @@ fn add_missing_ok_or_some(
|
|||
acc.push(fix("insert_wrapped_unit", &name, source_change, expr_range));
|
||||
}
|
||||
return Some(());
|
||||
} else if let Expr::ReturnExpr(ret_expr) = &expr {
|
||||
// Fix for forms like `fn foo() -> Result<(), String> { return; }`
|
||||
if ret_expr.expr().is_none() {
|
||||
let mut builder = TextEdit::builder();
|
||||
builder
|
||||
.insert(ret_expr.syntax().text_range().end(), format!(" {variant_name}(())"));
|
||||
let source_change = SourceChange::from_text_edit(
|
||||
expr_ptr.file_id.original_file(ctx.sema.db),
|
||||
builder.finish(),
|
||||
);
|
||||
let name = format!("Insert {variant_name}(()) as the return value");
|
||||
acc.push(fix("insert_wrapped_unit", &name, source_change, expr_range));
|
||||
}
|
||||
return Some(());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -603,6 +618,29 @@ fn foo() -> Result<(), ()> {
|
|||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_wrapped_unit_as_return_expr() {
|
||||
check_fix(
|
||||
r#"
|
||||
//- minicore: result
|
||||
fn foo(b: bool) -> Result<(), String> {
|
||||
if b {
|
||||
return$0;
|
||||
}
|
||||
|
||||
Err("oh dear".to_owned())
|
||||
}"#,
|
||||
r#"
|
||||
fn foo(b: bool) -> Result<(), String> {
|
||||
if b {
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
Err("oh dear".to_owned())
|
||||
}"#,
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_in_const_and_static() {
|
||||
check_fix(
|
||||
|
|
Loading…
Reference in a new issue