mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 21:05:02 +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 {
|
fn get_field_name(node: &SyntaxNode) -> String {
|
||||||
let res = match_ast! {
|
let res = match_ast! {
|
||||||
match node {
|
match node {
|
||||||
ast::RecordField(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()) },
|
ast::RecordFieldPat(field) => field.field_name().map(|it| it.to_string()),
|
||||||
_ => None,
|
_ => None,
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue