mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 22:01:37 +00:00
Use name![derive]
This commit is contained in:
parent
c51213c2e7
commit
d6187de4cd
1 changed files with 6 additions and 2 deletions
|
@ -5,7 +5,11 @@ use syntax::{
|
||||||
AstNode, SyntaxNode,
|
AstNode, SyntaxNode,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{db::AstDatabase, name::AsName, AttrId, LazyMacroId, MacroCallKind, MacroCallLoc};
|
use crate::{
|
||||||
|
db::AstDatabase,
|
||||||
|
name::{name, AsName},
|
||||||
|
AttrId, LazyMacroId, MacroCallKind, MacroCallLoc,
|
||||||
|
};
|
||||||
|
|
||||||
pub(crate) fn process_macro_input(
|
pub(crate) fn process_macro_input(
|
||||||
db: &dyn AstDatabase,
|
db: &dyn AstDatabase,
|
||||||
|
@ -35,7 +39,7 @@ fn remove_derives_up_to(item: ast::Item, attr: AttrId) -> ast::Item {
|
||||||
if let Some(name) =
|
if let Some(name) =
|
||||||
attr.path().and_then(|path| path.as_single_segment()).and_then(|seg| seg.name_ref())
|
attr.path().and_then(|path| path.as_single_segment()).and_then(|seg| seg.name_ref())
|
||||||
{
|
{
|
||||||
if name.as_name().to_string() == "derive" {
|
if name.as_name() == name![derive] {
|
||||||
attr.syntax().detach();
|
attr.syntax().detach();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue