From 621ba1c2d31b135a86d3505d6b9f10146fa0bf3b Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Tue, 28 Dec 2021 13:52:40 +0300 Subject: [PATCH] import style --- crates/ide_db/src/helpers.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/ide_db/src/helpers.rs b/crates/ide_db/src/helpers.rs index 18a5f64891e..e4199898bfc 100644 --- a/crates/ide_db/src/helpers.rs +++ b/crates/ide_db/src/helpers.rs @@ -14,7 +14,7 @@ use base_db::FileId; use hir::{ItemInNs, MacroDef, ModuleDef, Name, PathResolution, Semantics}; use itertools::Itertools; use syntax::{ - ast::{self, make, HasLoopBody, Ident}, + ast::{self, make, HasLoopBody}, AstNode, AstToken, Direction, SyntaxElement, SyntaxKind, SyntaxToken, TokenAtOffset, WalkEvent, T, }; @@ -38,7 +38,7 @@ pub fn item_name(db: &RootDatabase, item: ItemInNs) -> Option { pub fn get_path_in_derive_attr( sema: &hir::Semantics, attr: &ast::Attr, - cursor: &Ident, + cursor: &ast::Ident, ) -> Option { let path = attr.path()?; let tt = attr.token_tree()?; @@ -55,7 +55,7 @@ pub fn get_path_in_derive_attr( } /// Parses the path the identifier is part of inside a token tree. -pub fn get_path_at_cursor_in_tt(cursor: &Ident) -> Option { +pub fn get_path_at_cursor_in_tt(cursor: &ast::Ident) -> Option { let cursor = cursor.syntax(); let first = cursor .siblings_with_tokens(Direction::Prev) @@ -75,7 +75,7 @@ pub fn get_path_at_cursor_in_tt(cursor: &Ident) -> Option { pub fn try_resolve_derive_input( sema: &hir::Semantics, attr: &ast::Attr, - cursor: &Ident, + cursor: &ast::Ident, ) -> Option { let path = get_path_in_derive_attr(sema, attr, cursor)?; let scope = sema.scope(attr.syntax());