aboutsummaryrefslogtreecommitdiff
path: root/xtask/src
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-02-29 20:24:40 +0000
committerAleksey Kladov <[email protected]>2020-02-29 20:33:15 +0000
commita1e18695548b5cd6661f26a985b34c8b105e1896 (patch)
treee099bb9e9c04392dcb7fed54200a989f663f3659 /xtask/src
parentf316e074d2a2906a130d3046b5c3aa24daffb766 (diff)
Rename ast::ImplBlock -> ast::ImplDef
Diffstat (limited to 'xtask/src')
-rw-r--r--xtask/src/ast_src.rs6
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,