diff options
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/ast_src.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs index 98d8104e5..9b58aad97 100644 --- a/xtask/src/ast_src.rs +++ b/xtask/src/ast_src.rs | |||
@@ -104,7 +104,7 @@ pub(crate) const KINDS_SRC: KindsSrc = KindsSrc { | |||
104 | "STATIC_DEF", | 104 | "STATIC_DEF", |
105 | "CONST_DEF", | 105 | "CONST_DEF", |
106 | "TRAIT_DEF", | 106 | "TRAIT_DEF", |
107 | "IMPL_BLOCK", | 107 | "IMPL_DEF", |
108 | "TYPE_ALIAS_DEF", | 108 | "TYPE_ALIAS_DEF", |
109 | "MACRO_CALL", | 109 | "MACRO_CALL", |
110 | "TOKEN_TREE", | 110 | "TOKEN_TREE", |
@@ -357,7 +357,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
357 | TypeRef, | 357 | TypeRef, |
358 | } | 358 | } |
359 | 359 | ||
360 | struct ImplBlock: TypeParamsOwner, AttrsOwner { | 360 | struct ImplDef: TypeParamsOwner, AttrsOwner { |
361 | ItemList, | 361 | ItemList, |
362 | } | 362 | } |
363 | 363 | ||
@@ -560,7 +560,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
560 | FnDef, | 560 | FnDef, |
561 | TraitDef, | 561 | TraitDef, |
562 | TypeAliasDef, | 562 | TypeAliasDef, |
563 | ImplBlock, | 563 | ImplDef, |
564 | UseItem, | 564 | UseItem, |
565 | ExternCrateItem, | 565 | ExternCrateItem, |
566 | ConstDef, | 566 | ConstDef, |