mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 21:54:42 +00:00
Remove more unnecessary braces
This commit is contained in:
parent
268b798729
commit
e809328c12
1 changed files with 2 additions and 2 deletions
|
@ -69,8 +69,8 @@ fn get_fields_kind(node: &SyntaxNode) -> Vec<SyntaxKind> {
|
|||
fn get_field_name(node: &SyntaxNode) -> String {
|
||||
let res = match_ast! {
|
||||
match node {
|
||||
ast::RecordField(field) => { field.field_name().map(|it| it.to_string()) },
|
||||
ast::RecordFieldPat(field) => { field.field_name().map(|it| it.to_string()) },
|
||||
ast::RecordField(field) => field.field_name().map(|it| it.to_string()),
|
||||
ast::RecordFieldPat(field) => field.field_name().map(|it| it.to_string()),
|
||||
_ => None,
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue