aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/ast_src.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-02-29 20:40:29 +0000
committerGitHub <[email protected]>2020-02-29 20:40:29 +0000
commit5e78036e6c8752fda350818afdd411ab25f405ce (patch)
treee099bb9e9c04392dcb7fed54200a989f663f3659 /xtask/src/ast_src.rs
parente91320632a9dfee937c3c2ba3ffafd3f5ffb22dc (diff)
parenta1e18695548b5cd6661f26a985b34c8b105e1896 (diff)
Merge #3379
3379: Rename ast::ImplBlock -> ast::ImplDef r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'xtask/src/ast_src.rs')
-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,