mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 22:31:43 +00:00
Rename ast::ImplBlock -> ast::ImplDef
This commit is contained in:
parent
f316e074d2
commit
a1e1869554
68 changed files with 216 additions and 224 deletions
|
@ -104,7 +104,7 @@ pub(crate) const KINDS_SRC: KindsSrc = KindsSrc {
|
|||
"STATIC_DEF",
|
||||
"CONST_DEF",
|
||||
"TRAIT_DEF",
|
||||
"IMPL_BLOCK",
|
||||
"IMPL_DEF",
|
||||
"TYPE_ALIAS_DEF",
|
||||
"MACRO_CALL",
|
||||
"TOKEN_TREE",
|
||||
|
@ -357,7 +357,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc {
|
|||
TypeRef,
|
||||
}
|
||||
|
||||
struct ImplBlock: TypeParamsOwner, AttrsOwner {
|
||||
struct ImplDef: TypeParamsOwner, AttrsOwner {
|
||||
ItemList,
|
||||
}
|
||||
|
||||
|
@ -560,7 +560,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc {
|
|||
FnDef,
|
||||
TraitDef,
|
||||
TypeAliasDef,
|
||||
ImplBlock,
|
||||
ImplDef,
|
||||
UseItem,
|
||||
ExternCrateItem,
|
||||
ConstDef,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue