mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-03 07:04:49 +00:00
Run cargo fmt
This commit is contained in:
parent
8318035726
commit
7e285e1ef5
35 changed files with 190 additions and 45 deletions
|
@ -107,7 +107,10 @@ fn expand_macro_recur(
|
|||
expand(sema, expanded, ast::MacroCall::cast, expand_macro_recur)
|
||||
}
|
||||
|
||||
fn expand_attr_macro_recur(sema: &Semantics<'_, RootDatabase>, item: &ast::Item) -> Option<SyntaxNode> {
|
||||
fn expand_attr_macro_recur(
|
||||
sema: &Semantics<'_, RootDatabase>,
|
||||
item: &ast::Item,
|
||||
) -> Option<SyntaxNode> {
|
||||
let expanded = sema.expand_attr_macro(item)?.clone_for_update();
|
||||
expand(sema, expanded, ast::Item::cast, expand_attr_macro_recur)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue