Skip to content

Commit

Permalink
remove trailing return in trailing match expression
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsemakula committed Jan 31, 2024
1 parent ee44cf1 commit 7cc6b86
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 8 deletions.
6 changes: 6 additions & 0 deletions crates/hir-ty/src/diagnostics/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,12 @@ impl ExprValidator {
self.check_for_trailing_return(*else_branch, body);
}
}
Expr::Match { arms, .. } => {
for arm in arms.iter() {
let MatchArm { expr, .. } = arm;
self.check_for_trailing_return(*expr, body);
}
}
Expr::Return { .. } => {
self.diagnostics.push(BodyValidationDiagnostic::RemoveTrailingReturn {
return_expr: body_expr,
Expand Down
19 changes: 11 additions & 8 deletions crates/hir/src/diagnostics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use cfg::{CfgExpr, CfgOptions};
use either::Either;
use hir_def::{body::SyntheticSyntax, hir::ExprOrPatId, path::ModPath, AssocItemId, DefWithBodyId};
use hir_expand::{name::Name, HirFileId, InFile};
use syntax::{ast, AstPtr, SyntaxError, SyntaxNodePtr, TextRange};
use syntax::{ast, AstNode, AstPtr, SyntaxError, SyntaxNodePtr, TextRange};

use crate::{AssocItem, Field, Local, MacroKind, Trait, Type};

Expand Down Expand Up @@ -453,13 +453,16 @@ impl AnyDiagnostic {
}
BodyValidationDiagnostic::RemoveTrailingReturn { return_expr } => {
if let Ok(source_ptr) = source_map.expr_syntax(return_expr) {
return Some(
RemoveTrailingReturn {
file_id: source_ptr.file_id,
return_expr: source_ptr.value,
}
.into(),
);
// Filters out desugared return expressions (e.g. desugared try operators).
if ast::ReturnExpr::can_cast(source_ptr.value.kind()) {
return Some(
RemoveTrailingReturn {
file_id: source_ptr.file_id,
return_expr: source_ptr.value,
}
.into(),
);
}
}
}
}
Expand Down
55 changes: 55 additions & 0 deletions crates/ide-diagnostics/src/handlers/remove_trailing_return.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,21 @@ fn foo(x: usize) -> u8 {
);
}

#[test]
fn remove_trailing_return_in_match() {
check_diagnostics(
r#"
fn foo<T, E>(x: Result<T, E>) -> u8 {
match x {
Ok(_) => return 1,
//^^^^^^^^ 💡 weak: replace return <expr>; with <expr>
Err(_) => return 0,
} //^^^^^^^^ 💡 weak: replace return <expr>; with <expr>
}
"#,
);
}

#[test]
fn no_diagnostic_if_no_return_keyword() {
check_diagnostics(
Expand Down Expand Up @@ -316,6 +331,46 @@ fn foo(x: usize) -> u8 {
0
}
}
"#,
);
}

#[test]
fn replace_in_match() {
check_fix(
r#"
fn foo<T, E>(x: Result<T, E>) -> u8 {
match x {
Ok(_) => return$0 1,
Err(_) => 0,
}
}
"#,
r#"
fn foo<T, E>(x: Result<T, E>) -> u8 {
match x {
Ok(_) => 1,
Err(_) => 0,
}
}
"#,
);
check_fix(
r#"
fn foo<T, E>(x: Result<T, E>) -> u8 {
match x {
Ok(_) => 1,
Err(_) => return$0 0,
}
}
"#,
r#"
fn foo<T, E>(x: Result<T, E>) -> u8 {
match x {
Ok(_) => 1,
Err(_) => 0,
}
}
"#,
);
}
Expand Down

0 comments on commit 7cc6b86

Please sign in to comment.