diff options
Diffstat (limited to 'crates/ra_syntax/src/ast/generated')
-rw-r--r-- | crates/ra_syntax/src/ast/generated/nodes.rs | 376 |
1 files changed, 188 insertions, 188 deletions
diff --git a/crates/ra_syntax/src/ast/generated/nodes.rs b/crates/ra_syntax/src/ast/generated/nodes.rs index 8b348ad6e..0bcb7fe61 100644 --- a/crates/ra_syntax/src/ast/generated/nodes.rs +++ b/crates/ra_syntax/src/ast/generated/nodes.rs | |||
@@ -49,15 +49,15 @@ impl ast::DocCommentsOwner for FnDef {} | |||
49 | impl ast::AttrsOwner for FnDef {} | 49 | impl ast::AttrsOwner for FnDef {} |
50 | impl FnDef { | 50 | impl FnDef { |
51 | pub fn abi(&self) -> Option<Abi> { support::child(&self.syntax) } | 51 | pub fn abi(&self) -> Option<Abi> { support::child(&self.syntax) } |
52 | pub fn const_kw(&self) -> Option<ConstKw> { support::token(&self.syntax) } | 52 | pub fn const_kw_token(&self) -> Option<ConstKw> { support::token(&self.syntax) } |
53 | pub fn default_kw(&self) -> Option<DefaultKw> { support::token(&self.syntax) } | 53 | pub fn default_kw_token(&self) -> Option<DefaultKw> { support::token(&self.syntax) } |
54 | pub fn async_kw(&self) -> Option<AsyncKw> { support::token(&self.syntax) } | 54 | pub fn async_kw_token(&self) -> Option<AsyncKw> { support::token(&self.syntax) } |
55 | pub fn unsafe_kw(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } | 55 | pub fn unsafe_kw_token(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } |
56 | pub fn fn_kw(&self) -> Option<FnKw> { support::token(&self.syntax) } | 56 | pub fn fn_kw_token(&self) -> Option<FnKw> { support::token(&self.syntax) } |
57 | pub fn param_list(&self) -> Option<ParamList> { support::child(&self.syntax) } | 57 | pub fn param_list(&self) -> Option<ParamList> { support::child(&self.syntax) } |
58 | pub fn ret_type(&self) -> Option<RetType> { support::child(&self.syntax) } | 58 | pub fn ret_type(&self) -> Option<RetType> { support::child(&self.syntax) } |
59 | pub fn body(&self) -> Option<BlockExpr> { support::child(&self.syntax) } | 59 | pub fn body(&self) -> Option<BlockExpr> { support::child(&self.syntax) } |
60 | pub fn semi(&self) -> Option<Semi> { support::token(&self.syntax) } | 60 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } |
61 | } | 61 | } |
62 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 62 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
63 | pub struct RetType { | 63 | pub struct RetType { |
@@ -75,7 +75,7 @@ impl AstNode for RetType { | |||
75 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 75 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
76 | } | 76 | } |
77 | impl RetType { | 77 | impl RetType { |
78 | pub fn thin_arrow(&self) -> Option<ThinArrow> { support::token(&self.syntax) } | 78 | pub fn thin_arrow_token(&self) -> Option<ThinArrow> { support::token(&self.syntax) } |
79 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 79 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
80 | } | 80 | } |
81 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 81 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -99,9 +99,9 @@ impl ast::TypeParamsOwner for StructDef {} | |||
99 | impl ast::AttrsOwner for StructDef {} | 99 | impl ast::AttrsOwner for StructDef {} |
100 | impl ast::DocCommentsOwner for StructDef {} | 100 | impl ast::DocCommentsOwner for StructDef {} |
101 | impl StructDef { | 101 | impl StructDef { |
102 | pub fn struct_kw(&self) -> Option<StructKw> { support::token(&self.syntax) } | 102 | pub fn struct_kw_token(&self) -> Option<StructKw> { support::token(&self.syntax) } |
103 | pub fn field_def_list(&self) -> Option<FieldDefList> { support::child(&self.syntax) } | 103 | pub fn field_def_list(&self) -> Option<FieldDefList> { support::child(&self.syntax) } |
104 | pub fn semi(&self) -> Option<Semi> { support::token(&self.syntax) } | 104 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } |
105 | } | 105 | } |
106 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 106 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
107 | pub struct UnionDef { | 107 | pub struct UnionDef { |
@@ -124,7 +124,7 @@ impl ast::TypeParamsOwner for UnionDef {} | |||
124 | impl ast::AttrsOwner for UnionDef {} | 124 | impl ast::AttrsOwner for UnionDef {} |
125 | impl ast::DocCommentsOwner for UnionDef {} | 125 | impl ast::DocCommentsOwner for UnionDef {} |
126 | impl UnionDef { | 126 | impl UnionDef { |
127 | pub fn union_kw(&self) -> Option<UnionKw> { support::token(&self.syntax) } | 127 | pub fn union_kw_token(&self) -> Option<UnionKw> { support::token(&self.syntax) } |
128 | pub fn record_field_def_list(&self) -> Option<RecordFieldDefList> { | 128 | pub fn record_field_def_list(&self) -> Option<RecordFieldDefList> { |
129 | support::child(&self.syntax) | 129 | support::child(&self.syntax) |
130 | } | 130 | } |
@@ -145,9 +145,9 @@ impl AstNode for RecordFieldDefList { | |||
145 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 145 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
146 | } | 146 | } |
147 | impl RecordFieldDefList { | 147 | impl RecordFieldDefList { |
148 | pub fn l_curly(&self) -> Option<LCurly> { support::token(&self.syntax) } | 148 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } |
149 | pub fn fields(&self) -> AstChildren<RecordFieldDef> { support::children(&self.syntax) } | 149 | pub fn fields(&self) -> AstChildren<RecordFieldDef> { support::children(&self.syntax) } |
150 | pub fn r_curly(&self) -> Option<RCurly> { support::token(&self.syntax) } | 150 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } |
151 | } | 151 | } |
152 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 152 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
153 | pub struct RecordFieldDef { | 153 | pub struct RecordFieldDef { |
@@ -186,9 +186,9 @@ impl AstNode for TupleFieldDefList { | |||
186 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 186 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
187 | } | 187 | } |
188 | impl TupleFieldDefList { | 188 | impl TupleFieldDefList { |
189 | pub fn l_paren(&self) -> Option<LParen> { support::token(&self.syntax) } | 189 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } |
190 | pub fn fields(&self) -> AstChildren<TupleFieldDef> { support::children(&self.syntax) } | 190 | pub fn fields(&self) -> AstChildren<TupleFieldDef> { support::children(&self.syntax) } |
191 | pub fn r_paren(&self) -> Option<RParen> { support::token(&self.syntax) } | 191 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } |
192 | } | 192 | } |
193 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 193 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
194 | pub struct TupleFieldDef { | 194 | pub struct TupleFieldDef { |
@@ -231,7 +231,7 @@ impl ast::TypeParamsOwner for EnumDef {} | |||
231 | impl ast::AttrsOwner for EnumDef {} | 231 | impl ast::AttrsOwner for EnumDef {} |
232 | impl ast::DocCommentsOwner for EnumDef {} | 232 | impl ast::DocCommentsOwner for EnumDef {} |
233 | impl EnumDef { | 233 | impl EnumDef { |
234 | pub fn enum_kw(&self) -> Option<EnumKw> { support::token(&self.syntax) } | 234 | pub fn enum_kw_token(&self) -> Option<EnumKw> { support::token(&self.syntax) } |
235 | pub fn variant_list(&self) -> Option<EnumVariantList> { support::child(&self.syntax) } | 235 | pub fn variant_list(&self) -> Option<EnumVariantList> { support::child(&self.syntax) } |
236 | } | 236 | } |
237 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 237 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -250,9 +250,9 @@ impl AstNode for EnumVariantList { | |||
250 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 250 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
251 | } | 251 | } |
252 | impl EnumVariantList { | 252 | impl EnumVariantList { |
253 | pub fn l_curly(&self) -> Option<LCurly> { support::token(&self.syntax) } | 253 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } |
254 | pub fn variants(&self) -> AstChildren<EnumVariant> { support::children(&self.syntax) } | 254 | pub fn variants(&self) -> AstChildren<EnumVariant> { support::children(&self.syntax) } |
255 | pub fn r_curly(&self) -> Option<RCurly> { support::token(&self.syntax) } | 255 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } |
256 | } | 256 | } |
257 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 257 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
258 | pub struct EnumVariant { | 258 | pub struct EnumVariant { |
@@ -275,7 +275,7 @@ impl ast::DocCommentsOwner for EnumVariant {} | |||
275 | impl ast::AttrsOwner for EnumVariant {} | 275 | impl ast::AttrsOwner for EnumVariant {} |
276 | impl EnumVariant { | 276 | impl EnumVariant { |
277 | pub fn field_def_list(&self) -> Option<FieldDefList> { support::child(&self.syntax) } | 277 | pub fn field_def_list(&self) -> Option<FieldDefList> { support::child(&self.syntax) } |
278 | pub fn eq(&self) -> Option<Eq> { support::token(&self.syntax) } | 278 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } |
279 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 279 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
280 | } | 280 | } |
281 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 281 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -300,9 +300,9 @@ impl ast::DocCommentsOwner for TraitDef {} | |||
300 | impl ast::TypeParamsOwner for TraitDef {} | 300 | impl ast::TypeParamsOwner for TraitDef {} |
301 | impl ast::TypeBoundsOwner for TraitDef {} | 301 | impl ast::TypeBoundsOwner for TraitDef {} |
302 | impl TraitDef { | 302 | impl TraitDef { |
303 | pub fn unsafe_kw(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } | 303 | pub fn unsafe_kw_token(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } |
304 | pub fn auto_kw(&self) -> Option<AutoKw> { support::token(&self.syntax) } | 304 | pub fn auto_kw_token(&self) -> Option<AutoKw> { support::token(&self.syntax) } |
305 | pub fn trait_kw(&self) -> Option<TraitKw> { support::token(&self.syntax) } | 305 | pub fn trait_kw_token(&self) -> Option<TraitKw> { support::token(&self.syntax) } |
306 | pub fn item_list(&self) -> Option<ItemList> { support::child(&self.syntax) } | 306 | pub fn item_list(&self) -> Option<ItemList> { support::child(&self.syntax) } |
307 | } | 307 | } |
308 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 308 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -325,9 +325,9 @@ impl ast::NameOwner for Module {} | |||
325 | impl ast::AttrsOwner for Module {} | 325 | impl ast::AttrsOwner for Module {} |
326 | impl ast::DocCommentsOwner for Module {} | 326 | impl ast::DocCommentsOwner for Module {} |
327 | impl Module { | 327 | impl Module { |
328 | pub fn mod_kw(&self) -> Option<ModKw> { support::token(&self.syntax) } | 328 | pub fn mod_kw_token(&self) -> Option<ModKw> { support::token(&self.syntax) } |
329 | pub fn item_list(&self) -> Option<ItemList> { support::child(&self.syntax) } | 329 | pub fn item_list(&self) -> Option<ItemList> { support::child(&self.syntax) } |
330 | pub fn semi(&self) -> Option<Semi> { support::token(&self.syntax) } | 330 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } |
331 | } | 331 | } |
332 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 332 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
333 | pub struct ItemList { | 333 | pub struct ItemList { |
@@ -347,9 +347,9 @@ impl AstNode for ItemList { | |||
347 | impl ast::FnDefOwner for ItemList {} | 347 | impl ast::FnDefOwner for ItemList {} |
348 | impl ast::ModuleItemOwner for ItemList {} | 348 | impl ast::ModuleItemOwner for ItemList {} |
349 | impl ItemList { | 349 | impl ItemList { |
350 | pub fn l_curly(&self) -> Option<LCurly> { support::token(&self.syntax) } | 350 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } |
351 | pub fn impl_items(&self) -> AstChildren<ImplItem> { support::children(&self.syntax) } | 351 | pub fn impl_items(&self) -> AstChildren<ImplItem> { support::children(&self.syntax) } |
352 | pub fn r_curly(&self) -> Option<RCurly> { support::token(&self.syntax) } | 352 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } |
353 | } | 353 | } |
354 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 354 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
355 | pub struct ConstDef { | 355 | pub struct ConstDef { |
@@ -373,11 +373,11 @@ impl ast::AttrsOwner for ConstDef {} | |||
373 | impl ast::DocCommentsOwner for ConstDef {} | 373 | impl ast::DocCommentsOwner for ConstDef {} |
374 | impl ast::TypeAscriptionOwner for ConstDef {} | 374 | impl ast::TypeAscriptionOwner for ConstDef {} |
375 | impl ConstDef { | 375 | impl ConstDef { |
376 | pub fn default_kw(&self) -> Option<DefaultKw> { support::token(&self.syntax) } | 376 | pub fn default_kw_token(&self) -> Option<DefaultKw> { support::token(&self.syntax) } |
377 | pub fn const_kw(&self) -> Option<ConstKw> { support::token(&self.syntax) } | 377 | pub fn const_kw_token(&self) -> Option<ConstKw> { support::token(&self.syntax) } |
378 | pub fn eq(&self) -> Option<Eq> { support::token(&self.syntax) } | 378 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } |
379 | pub fn body(&self) -> Option<Expr> { support::child(&self.syntax) } | 379 | pub fn body(&self) -> Option<Expr> { support::child(&self.syntax) } |
380 | pub fn semi(&self) -> Option<Semi> { support::token(&self.syntax) } | 380 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } |
381 | } | 381 | } |
382 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 382 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
383 | pub struct StaticDef { | 383 | pub struct StaticDef { |
@@ -401,11 +401,11 @@ impl ast::AttrsOwner for StaticDef {} | |||
401 | impl ast::DocCommentsOwner for StaticDef {} | 401 | impl ast::DocCommentsOwner for StaticDef {} |
402 | impl ast::TypeAscriptionOwner for StaticDef {} | 402 | impl ast::TypeAscriptionOwner for StaticDef {} |
403 | impl StaticDef { | 403 | impl StaticDef { |
404 | pub fn static_kw(&self) -> Option<StaticKw> { support::token(&self.syntax) } | 404 | pub fn static_kw_token(&self) -> Option<StaticKw> { support::token(&self.syntax) } |
405 | pub fn mut_kw(&self) -> Option<MutKw> { support::token(&self.syntax) } | 405 | pub fn mut_kw_token(&self) -> Option<MutKw> { support::token(&self.syntax) } |
406 | pub fn eq(&self) -> Option<Eq> { support::token(&self.syntax) } | 406 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } |
407 | pub fn body(&self) -> Option<Expr> { support::child(&self.syntax) } | 407 | pub fn body(&self) -> Option<Expr> { support::child(&self.syntax) } |
408 | pub fn semi(&self) -> Option<Semi> { support::token(&self.syntax) } | 408 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } |
409 | } | 409 | } |
410 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 410 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
411 | pub struct TypeAliasDef { | 411 | pub struct TypeAliasDef { |
@@ -429,11 +429,11 @@ impl ast::AttrsOwner for TypeAliasDef {} | |||
429 | impl ast::DocCommentsOwner for TypeAliasDef {} | 429 | impl ast::DocCommentsOwner for TypeAliasDef {} |
430 | impl ast::TypeBoundsOwner for TypeAliasDef {} | 430 | impl ast::TypeBoundsOwner for TypeAliasDef {} |
431 | impl TypeAliasDef { | 431 | impl TypeAliasDef { |
432 | pub fn default_kw(&self) -> Option<DefaultKw> { support::token(&self.syntax) } | 432 | pub fn default_kw_token(&self) -> Option<DefaultKw> { support::token(&self.syntax) } |
433 | pub fn type_kw(&self) -> Option<TypeKw> { support::token(&self.syntax) } | 433 | pub fn type_kw_token(&self) -> Option<TypeKw> { support::token(&self.syntax) } |
434 | pub fn eq(&self) -> Option<Eq> { support::token(&self.syntax) } | 434 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } |
435 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 435 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
436 | pub fn semi(&self) -> Option<Semi> { support::token(&self.syntax) } | 436 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } |
437 | } | 437 | } |
438 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 438 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
439 | pub struct ImplDef { | 439 | pub struct ImplDef { |
@@ -453,12 +453,12 @@ impl AstNode for ImplDef { | |||
453 | impl ast::TypeParamsOwner for ImplDef {} | 453 | impl ast::TypeParamsOwner for ImplDef {} |
454 | impl ast::AttrsOwner for ImplDef {} | 454 | impl ast::AttrsOwner for ImplDef {} |
455 | impl ImplDef { | 455 | impl ImplDef { |
456 | pub fn default_kw(&self) -> Option<DefaultKw> { support::token(&self.syntax) } | 456 | pub fn default_kw_token(&self) -> Option<DefaultKw> { support::token(&self.syntax) } |
457 | pub fn const_kw(&self) -> Option<ConstKw> { support::token(&self.syntax) } | 457 | pub fn const_kw_token(&self) -> Option<ConstKw> { support::token(&self.syntax) } |
458 | pub fn unsafe_kw(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } | 458 | pub fn unsafe_kw_token(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } |
459 | pub fn impl_kw(&self) -> Option<ImplKw> { support::token(&self.syntax) } | 459 | pub fn impl_kw_token(&self) -> Option<ImplKw> { support::token(&self.syntax) } |
460 | pub fn excl(&self) -> Option<Excl> { support::token(&self.syntax) } | 460 | pub fn excl_token(&self) -> Option<Excl> { support::token(&self.syntax) } |
461 | pub fn for_kw(&self) -> Option<ForKw> { support::token(&self.syntax) } | 461 | pub fn for_kw_token(&self) -> Option<ForKw> { support::token(&self.syntax) } |
462 | pub fn item_list(&self) -> Option<ItemList> { support::child(&self.syntax) } | 462 | pub fn item_list(&self) -> Option<ItemList> { support::child(&self.syntax) } |
463 | } | 463 | } |
464 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 464 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -477,9 +477,9 @@ impl AstNode for ParenType { | |||
477 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 477 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
478 | } | 478 | } |
479 | impl ParenType { | 479 | impl ParenType { |
480 | pub fn l_paren(&self) -> Option<LParen> { support::token(&self.syntax) } | 480 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } |
481 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 481 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
482 | pub fn r_paren(&self) -> Option<RParen> { support::token(&self.syntax) } | 482 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } |
483 | } | 483 | } |
484 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 484 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
485 | pub struct TupleType { | 485 | pub struct TupleType { |
@@ -497,9 +497,9 @@ impl AstNode for TupleType { | |||
497 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 497 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
498 | } | 498 | } |
499 | impl TupleType { | 499 | impl TupleType { |
500 | pub fn l_paren(&self) -> Option<LParen> { support::token(&self.syntax) } | 500 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } |
501 | pub fn fields(&self) -> AstChildren<TypeRef> { support::children(&self.syntax) } | 501 | pub fn fields(&self) -> AstChildren<TypeRef> { support::children(&self.syntax) } |
502 | pub fn r_paren(&self) -> Option<RParen> { support::token(&self.syntax) } | 502 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } |
503 | } | 503 | } |
504 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 504 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
505 | pub struct NeverType { | 505 | pub struct NeverType { |
@@ -517,7 +517,7 @@ impl AstNode for NeverType { | |||
517 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 517 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
518 | } | 518 | } |
519 | impl NeverType { | 519 | impl NeverType { |
520 | pub fn excl(&self) -> Option<Excl> { support::token(&self.syntax) } | 520 | pub fn excl_token(&self) -> Option<Excl> { support::token(&self.syntax) } |
521 | } | 521 | } |
522 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 522 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
523 | pub struct PathType { | 523 | pub struct PathType { |
@@ -553,8 +553,8 @@ impl AstNode for PointerType { | |||
553 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 553 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
554 | } | 554 | } |
555 | impl PointerType { | 555 | impl PointerType { |
556 | pub fn star(&self) -> Option<Star> { support::token(&self.syntax) } | 556 | pub fn star_token(&self) -> Option<Star> { support::token(&self.syntax) } |
557 | pub fn const_kw(&self) -> Option<ConstKw> { support::token(&self.syntax) } | 557 | pub fn const_kw_token(&self) -> Option<ConstKw> { support::token(&self.syntax) } |
558 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 558 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
559 | } | 559 | } |
560 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 560 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -573,11 +573,11 @@ impl AstNode for ArrayType { | |||
573 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 573 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
574 | } | 574 | } |
575 | impl ArrayType { | 575 | impl ArrayType { |
576 | pub fn l_brack(&self) -> Option<LBrack> { support::token(&self.syntax) } | 576 | pub fn l_brack_token(&self) -> Option<LBrack> { support::token(&self.syntax) } |
577 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 577 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
578 | pub fn semi(&self) -> Option<Semi> { support::token(&self.syntax) } | 578 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } |
579 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 579 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
580 | pub fn r_brack(&self) -> Option<RBrack> { support::token(&self.syntax) } | 580 | pub fn r_brack_token(&self) -> Option<RBrack> { support::token(&self.syntax) } |
581 | } | 581 | } |
582 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 582 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
583 | pub struct SliceType { | 583 | pub struct SliceType { |
@@ -595,9 +595,9 @@ impl AstNode for SliceType { | |||
595 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 595 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
596 | } | 596 | } |
597 | impl SliceType { | 597 | impl SliceType { |
598 | pub fn l_brack(&self) -> Option<LBrack> { support::token(&self.syntax) } | 598 | pub fn l_brack_token(&self) -> Option<LBrack> { support::token(&self.syntax) } |
599 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 599 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
600 | pub fn r_brack(&self) -> Option<RBrack> { support::token(&self.syntax) } | 600 | pub fn r_brack_token(&self) -> Option<RBrack> { support::token(&self.syntax) } |
601 | } | 601 | } |
602 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 602 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
603 | pub struct ReferenceType { | 603 | pub struct ReferenceType { |
@@ -615,9 +615,9 @@ impl AstNode for ReferenceType { | |||
615 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 615 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
616 | } | 616 | } |
617 | impl ReferenceType { | 617 | impl ReferenceType { |
618 | pub fn amp(&self) -> Option<Amp> { support::token(&self.syntax) } | 618 | pub fn amp_token(&self) -> Option<Amp> { support::token(&self.syntax) } |
619 | pub fn lifetime(&self) -> Option<Lifetime> { support::token(&self.syntax) } | 619 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } |
620 | pub fn mut_kw(&self) -> Option<MutKw> { support::token(&self.syntax) } | 620 | pub fn mut_kw_token(&self) -> Option<MutKw> { support::token(&self.syntax) } |
621 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 621 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
622 | } | 622 | } |
623 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 623 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -636,7 +636,7 @@ impl AstNode for PlaceholderType { | |||
636 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 636 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
637 | } | 637 | } |
638 | impl PlaceholderType { | 638 | impl PlaceholderType { |
639 | pub fn underscore(&self) -> Option<Underscore> { support::token(&self.syntax) } | 639 | pub fn underscore_token(&self) -> Option<Underscore> { support::token(&self.syntax) } |
640 | } | 640 | } |
641 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 641 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
642 | pub struct FnPointerType { | 642 | pub struct FnPointerType { |
@@ -655,8 +655,8 @@ impl AstNode for FnPointerType { | |||
655 | } | 655 | } |
656 | impl FnPointerType { | 656 | impl FnPointerType { |
657 | pub fn abi(&self) -> Option<Abi> { support::child(&self.syntax) } | 657 | pub fn abi(&self) -> Option<Abi> { support::child(&self.syntax) } |
658 | pub fn unsafe_kw(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } | 658 | pub fn unsafe_kw_token(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } |
659 | pub fn fn_kw(&self) -> Option<FnKw> { support::token(&self.syntax) } | 659 | pub fn fn_kw_token(&self) -> Option<FnKw> { support::token(&self.syntax) } |
660 | pub fn param_list(&self) -> Option<ParamList> { support::child(&self.syntax) } | 660 | pub fn param_list(&self) -> Option<ParamList> { support::child(&self.syntax) } |
661 | pub fn ret_type(&self) -> Option<RetType> { support::child(&self.syntax) } | 661 | pub fn ret_type(&self) -> Option<RetType> { support::child(&self.syntax) } |
662 | } | 662 | } |
@@ -676,7 +676,7 @@ impl AstNode for ForType { | |||
676 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 676 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
677 | } | 677 | } |
678 | impl ForType { | 678 | impl ForType { |
679 | pub fn for_kw(&self) -> Option<ForKw> { support::token(&self.syntax) } | 679 | pub fn for_kw_token(&self) -> Option<ForKw> { support::token(&self.syntax) } |
680 | pub fn type_param_list(&self) -> Option<TypeParamList> { support::child(&self.syntax) } | 680 | pub fn type_param_list(&self) -> Option<TypeParamList> { support::child(&self.syntax) } |
681 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 681 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
682 | } | 682 | } |
@@ -697,7 +697,7 @@ impl AstNode for ImplTraitType { | |||
697 | } | 697 | } |
698 | impl ast::TypeBoundsOwner for ImplTraitType {} | 698 | impl ast::TypeBoundsOwner for ImplTraitType {} |
699 | impl ImplTraitType { | 699 | impl ImplTraitType { |
700 | pub fn impl_kw(&self) -> Option<ImplKw> { support::token(&self.syntax) } | 700 | pub fn impl_kw_token(&self) -> Option<ImplKw> { support::token(&self.syntax) } |
701 | } | 701 | } |
702 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 702 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
703 | pub struct DynTraitType { | 703 | pub struct DynTraitType { |
@@ -716,7 +716,7 @@ impl AstNode for DynTraitType { | |||
716 | } | 716 | } |
717 | impl ast::TypeBoundsOwner for DynTraitType {} | 717 | impl ast::TypeBoundsOwner for DynTraitType {} |
718 | impl DynTraitType { | 718 | impl DynTraitType { |
719 | pub fn dyn_kw(&self) -> Option<DynKw> { support::token(&self.syntax) } | 719 | pub fn dyn_kw_token(&self) -> Option<DynKw> { support::token(&self.syntax) } |
720 | } | 720 | } |
721 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 721 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
722 | pub struct TupleExpr { | 722 | pub struct TupleExpr { |
@@ -735,9 +735,9 @@ impl AstNode for TupleExpr { | |||
735 | } | 735 | } |
736 | impl ast::AttrsOwner for TupleExpr {} | 736 | impl ast::AttrsOwner for TupleExpr {} |
737 | impl TupleExpr { | 737 | impl TupleExpr { |
738 | pub fn l_paren(&self) -> Option<LParen> { support::token(&self.syntax) } | 738 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } |
739 | pub fn exprs(&self) -> AstChildren<Expr> { support::children(&self.syntax) } | 739 | pub fn exprs(&self) -> AstChildren<Expr> { support::children(&self.syntax) } |
740 | pub fn r_paren(&self) -> Option<RParen> { support::token(&self.syntax) } | 740 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } |
741 | } | 741 | } |
742 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 742 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
743 | pub struct ArrayExpr { | 743 | pub struct ArrayExpr { |
@@ -756,10 +756,10 @@ impl AstNode for ArrayExpr { | |||
756 | } | 756 | } |
757 | impl ast::AttrsOwner for ArrayExpr {} | 757 | impl ast::AttrsOwner for ArrayExpr {} |
758 | impl ArrayExpr { | 758 | impl ArrayExpr { |
759 | pub fn l_brack(&self) -> Option<LBrack> { support::token(&self.syntax) } | 759 | pub fn l_brack_token(&self) -> Option<LBrack> { support::token(&self.syntax) } |
760 | pub fn exprs(&self) -> AstChildren<Expr> { support::children(&self.syntax) } | 760 | pub fn exprs(&self) -> AstChildren<Expr> { support::children(&self.syntax) } |
761 | pub fn semi(&self) -> Option<Semi> { support::token(&self.syntax) } | 761 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } |
762 | pub fn r_brack(&self) -> Option<RBrack> { support::token(&self.syntax) } | 762 | pub fn r_brack_token(&self) -> Option<RBrack> { support::token(&self.syntax) } |
763 | } | 763 | } |
764 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 764 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
765 | pub struct ParenExpr { | 765 | pub struct ParenExpr { |
@@ -778,9 +778,9 @@ impl AstNode for ParenExpr { | |||
778 | } | 778 | } |
779 | impl ast::AttrsOwner for ParenExpr {} | 779 | impl ast::AttrsOwner for ParenExpr {} |
780 | impl ParenExpr { | 780 | impl ParenExpr { |
781 | pub fn l_paren(&self) -> Option<LParen> { support::token(&self.syntax) } | 781 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } |
782 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 782 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
783 | pub fn r_paren(&self) -> Option<RParen> { support::token(&self.syntax) } | 783 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } |
784 | } | 784 | } |
785 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 785 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
786 | pub struct PathExpr { | 786 | pub struct PathExpr { |
@@ -817,9 +817,9 @@ impl AstNode for LambdaExpr { | |||
817 | } | 817 | } |
818 | impl ast::AttrsOwner for LambdaExpr {} | 818 | impl ast::AttrsOwner for LambdaExpr {} |
819 | impl LambdaExpr { | 819 | impl LambdaExpr { |
820 | pub fn static_kw(&self) -> Option<StaticKw> { support::token(&self.syntax) } | 820 | pub fn static_kw_token(&self) -> Option<StaticKw> { support::token(&self.syntax) } |
821 | pub fn async_kw(&self) -> Option<AsyncKw> { support::token(&self.syntax) } | 821 | pub fn async_kw_token(&self) -> Option<AsyncKw> { support::token(&self.syntax) } |
822 | pub fn move_kw(&self) -> Option<MoveKw> { support::token(&self.syntax) } | 822 | pub fn move_kw_token(&self) -> Option<MoveKw> { support::token(&self.syntax) } |
823 | pub fn param_list(&self) -> Option<ParamList> { support::child(&self.syntax) } | 823 | pub fn param_list(&self) -> Option<ParamList> { support::child(&self.syntax) } |
824 | pub fn ret_type(&self) -> Option<RetType> { support::child(&self.syntax) } | 824 | pub fn ret_type(&self) -> Option<RetType> { support::child(&self.syntax) } |
825 | pub fn body(&self) -> Option<Expr> { support::child(&self.syntax) } | 825 | pub fn body(&self) -> Option<Expr> { support::child(&self.syntax) } |
@@ -841,7 +841,7 @@ impl AstNode for IfExpr { | |||
841 | } | 841 | } |
842 | impl ast::AttrsOwner for IfExpr {} | 842 | impl ast::AttrsOwner for IfExpr {} |
843 | impl IfExpr { | 843 | impl IfExpr { |
844 | pub fn if_kw(&self) -> Option<IfKw> { support::token(&self.syntax) } | 844 | pub fn if_kw_token(&self) -> Option<IfKw> { support::token(&self.syntax) } |
845 | pub fn condition(&self) -> Option<Condition> { support::child(&self.syntax) } | 845 | pub fn condition(&self) -> Option<Condition> { support::child(&self.syntax) } |
846 | } | 846 | } |
847 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 847 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -862,7 +862,7 @@ impl AstNode for LoopExpr { | |||
862 | impl ast::AttrsOwner for LoopExpr {} | 862 | impl ast::AttrsOwner for LoopExpr {} |
863 | impl ast::LoopBodyOwner for LoopExpr {} | 863 | impl ast::LoopBodyOwner for LoopExpr {} |
864 | impl LoopExpr { | 864 | impl LoopExpr { |
865 | pub fn loop_kw(&self) -> Option<LoopKw> { support::token(&self.syntax) } | 865 | pub fn loop_kw_token(&self) -> Option<LoopKw> { support::token(&self.syntax) } |
866 | } | 866 | } |
867 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 867 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
868 | pub struct TryBlockExpr { | 868 | pub struct TryBlockExpr { |
@@ -881,7 +881,7 @@ impl AstNode for TryBlockExpr { | |||
881 | } | 881 | } |
882 | impl ast::AttrsOwner for TryBlockExpr {} | 882 | impl ast::AttrsOwner for TryBlockExpr {} |
883 | impl TryBlockExpr { | 883 | impl TryBlockExpr { |
884 | pub fn try_kw(&self) -> Option<TryKw> { support::token(&self.syntax) } | 884 | pub fn try_kw_token(&self) -> Option<TryKw> { support::token(&self.syntax) } |
885 | pub fn body(&self) -> Option<BlockExpr> { support::child(&self.syntax) } | 885 | pub fn body(&self) -> Option<BlockExpr> { support::child(&self.syntax) } |
886 | } | 886 | } |
887 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 887 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -902,9 +902,9 @@ impl AstNode for ForExpr { | |||
902 | impl ast::AttrsOwner for ForExpr {} | 902 | impl ast::AttrsOwner for ForExpr {} |
903 | impl ast::LoopBodyOwner for ForExpr {} | 903 | impl ast::LoopBodyOwner for ForExpr {} |
904 | impl ForExpr { | 904 | impl ForExpr { |
905 | pub fn for_kw(&self) -> Option<ForKw> { support::token(&self.syntax) } | 905 | pub fn for_kw_token(&self) -> Option<ForKw> { support::token(&self.syntax) } |
906 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | 906 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } |
907 | pub fn in_kw(&self) -> Option<InKw> { support::token(&self.syntax) } | 907 | pub fn in_kw_token(&self) -> Option<InKw> { support::token(&self.syntax) } |
908 | pub fn iterable(&self) -> Option<Expr> { support::child(&self.syntax) } | 908 | pub fn iterable(&self) -> Option<Expr> { support::child(&self.syntax) } |
909 | } | 909 | } |
910 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 910 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -925,7 +925,7 @@ impl AstNode for WhileExpr { | |||
925 | impl ast::AttrsOwner for WhileExpr {} | 925 | impl ast::AttrsOwner for WhileExpr {} |
926 | impl ast::LoopBodyOwner for WhileExpr {} | 926 | impl ast::LoopBodyOwner for WhileExpr {} |
927 | impl WhileExpr { | 927 | impl WhileExpr { |
928 | pub fn while_kw(&self) -> Option<WhileKw> { support::token(&self.syntax) } | 928 | pub fn while_kw_token(&self) -> Option<WhileKw> { support::token(&self.syntax) } |
929 | pub fn condition(&self) -> Option<Condition> { support::child(&self.syntax) } | 929 | pub fn condition(&self) -> Option<Condition> { support::child(&self.syntax) } |
930 | } | 930 | } |
931 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 931 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -945,8 +945,8 @@ impl AstNode for ContinueExpr { | |||
945 | } | 945 | } |
946 | impl ast::AttrsOwner for ContinueExpr {} | 946 | impl ast::AttrsOwner for ContinueExpr {} |
947 | impl ContinueExpr { | 947 | impl ContinueExpr { |
948 | pub fn continue_kw(&self) -> Option<ContinueKw> { support::token(&self.syntax) } | 948 | pub fn continue_kw_token(&self) -> Option<ContinueKw> { support::token(&self.syntax) } |
949 | pub fn lifetime(&self) -> Option<Lifetime> { support::token(&self.syntax) } | 949 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } |
950 | } | 950 | } |
951 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 951 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
952 | pub struct BreakExpr { | 952 | pub struct BreakExpr { |
@@ -965,8 +965,8 @@ impl AstNode for BreakExpr { | |||
965 | } | 965 | } |
966 | impl ast::AttrsOwner for BreakExpr {} | 966 | impl ast::AttrsOwner for BreakExpr {} |
967 | impl BreakExpr { | 967 | impl BreakExpr { |
968 | pub fn break_kw(&self) -> Option<BreakKw> { support::token(&self.syntax) } | 968 | pub fn break_kw_token(&self) -> Option<BreakKw> { support::token(&self.syntax) } |
969 | pub fn lifetime(&self) -> Option<Lifetime> { support::token(&self.syntax) } | 969 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } |
970 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 970 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
971 | } | 971 | } |
972 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 972 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -985,7 +985,7 @@ impl AstNode for Label { | |||
985 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 985 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
986 | } | 986 | } |
987 | impl Label { | 987 | impl Label { |
988 | pub fn lifetime(&self) -> Option<Lifetime> { support::token(&self.syntax) } | 988 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } |
989 | } | 989 | } |
990 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 990 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
991 | pub struct BlockExpr { | 991 | pub struct BlockExpr { |
@@ -1005,7 +1005,7 @@ impl AstNode for BlockExpr { | |||
1005 | impl ast::AttrsOwner for BlockExpr {} | 1005 | impl ast::AttrsOwner for BlockExpr {} |
1006 | impl BlockExpr { | 1006 | impl BlockExpr { |
1007 | pub fn label(&self) -> Option<Label> { support::child(&self.syntax) } | 1007 | pub fn label(&self) -> Option<Label> { support::child(&self.syntax) } |
1008 | pub fn unsafe_kw(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } | 1008 | pub fn unsafe_kw_token(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } |
1009 | pub fn block(&self) -> Option<Block> { support::child(&self.syntax) } | 1009 | pub fn block(&self) -> Option<Block> { support::child(&self.syntax) } |
1010 | } | 1010 | } |
1011 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1011 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1065,7 +1065,7 @@ impl ast::AttrsOwner for MethodCallExpr {} | |||
1065 | impl ast::ArgListOwner for MethodCallExpr {} | 1065 | impl ast::ArgListOwner for MethodCallExpr {} |
1066 | impl MethodCallExpr { | 1066 | impl MethodCallExpr { |
1067 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 1067 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
1068 | pub fn dot(&self) -> Option<Dot> { support::token(&self.syntax) } | 1068 | pub fn dot_token(&self) -> Option<Dot> { support::token(&self.syntax) } |
1069 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } | 1069 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } |
1070 | pub fn type_arg_list(&self) -> Option<TypeArgList> { support::child(&self.syntax) } | 1070 | pub fn type_arg_list(&self) -> Option<TypeArgList> { support::child(&self.syntax) } |
1071 | } | 1071 | } |
@@ -1086,8 +1086,8 @@ impl AstNode for IndexExpr { | |||
1086 | } | 1086 | } |
1087 | impl ast::AttrsOwner for IndexExpr {} | 1087 | impl ast::AttrsOwner for IndexExpr {} |
1088 | impl IndexExpr { | 1088 | impl IndexExpr { |
1089 | pub fn l_brack(&self) -> Option<LBrack> { support::token(&self.syntax) } | 1089 | pub fn l_brack_token(&self) -> Option<LBrack> { support::token(&self.syntax) } |
1090 | pub fn r_brack(&self) -> Option<RBrack> { support::token(&self.syntax) } | 1090 | pub fn r_brack_token(&self) -> Option<RBrack> { support::token(&self.syntax) } |
1091 | } | 1091 | } |
1092 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1092 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1093 | pub struct FieldExpr { | 1093 | pub struct FieldExpr { |
@@ -1107,7 +1107,7 @@ impl AstNode for FieldExpr { | |||
1107 | impl ast::AttrsOwner for FieldExpr {} | 1107 | impl ast::AttrsOwner for FieldExpr {} |
1108 | impl FieldExpr { | 1108 | impl FieldExpr { |
1109 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 1109 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
1110 | pub fn dot(&self) -> Option<Dot> { support::token(&self.syntax) } | 1110 | pub fn dot_token(&self) -> Option<Dot> { support::token(&self.syntax) } |
1111 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } | 1111 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } |
1112 | } | 1112 | } |
1113 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1113 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1128,8 +1128,8 @@ impl AstNode for AwaitExpr { | |||
1128 | impl ast::AttrsOwner for AwaitExpr {} | 1128 | impl ast::AttrsOwner for AwaitExpr {} |
1129 | impl AwaitExpr { | 1129 | impl AwaitExpr { |
1130 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 1130 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
1131 | pub fn dot(&self) -> Option<Dot> { support::token(&self.syntax) } | 1131 | pub fn dot_token(&self) -> Option<Dot> { support::token(&self.syntax) } |
1132 | pub fn await_kw(&self) -> Option<AwaitKw> { support::token(&self.syntax) } | 1132 | pub fn await_kw_token(&self) -> Option<AwaitKw> { support::token(&self.syntax) } |
1133 | } | 1133 | } |
1134 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1134 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1135 | pub struct TryExpr { | 1135 | pub struct TryExpr { |
@@ -1148,7 +1148,7 @@ impl AstNode for TryExpr { | |||
1148 | } | 1148 | } |
1149 | impl ast::AttrsOwner for TryExpr {} | 1149 | impl ast::AttrsOwner for TryExpr {} |
1150 | impl TryExpr { | 1150 | impl TryExpr { |
1151 | pub fn try_kw(&self) -> Option<TryKw> { support::token(&self.syntax) } | 1151 | pub fn try_kw_token(&self) -> Option<TryKw> { support::token(&self.syntax) } |
1152 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 1152 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
1153 | } | 1153 | } |
1154 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1154 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1169,7 +1169,7 @@ impl AstNode for CastExpr { | |||
1169 | impl ast::AttrsOwner for CastExpr {} | 1169 | impl ast::AttrsOwner for CastExpr {} |
1170 | impl CastExpr { | 1170 | impl CastExpr { |
1171 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 1171 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
1172 | pub fn as_kw(&self) -> Option<AsKw> { support::token(&self.syntax) } | 1172 | pub fn as_kw_token(&self) -> Option<AsKw> { support::token(&self.syntax) } |
1173 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 1173 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
1174 | } | 1174 | } |
1175 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1175 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1189,9 +1189,9 @@ impl AstNode for RefExpr { | |||
1189 | } | 1189 | } |
1190 | impl ast::AttrsOwner for RefExpr {} | 1190 | impl ast::AttrsOwner for RefExpr {} |
1191 | impl RefExpr { | 1191 | impl RefExpr { |
1192 | pub fn amp(&self) -> Option<Amp> { support::token(&self.syntax) } | 1192 | pub fn amp_token(&self) -> Option<Amp> { support::token(&self.syntax) } |
1193 | pub fn raw_kw(&self) -> Option<RawKw> { support::token(&self.syntax) } | 1193 | pub fn raw_kw_token(&self) -> Option<RawKw> { support::token(&self.syntax) } |
1194 | pub fn mut_kw(&self) -> Option<MutKw> { support::token(&self.syntax) } | 1194 | pub fn mut_kw_token(&self) -> Option<MutKw> { support::token(&self.syntax) } |
1195 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 1195 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
1196 | } | 1196 | } |
1197 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1197 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1211,7 +1211,7 @@ impl AstNode for PrefixExpr { | |||
1211 | } | 1211 | } |
1212 | impl ast::AttrsOwner for PrefixExpr {} | 1212 | impl ast::AttrsOwner for PrefixExpr {} |
1213 | impl PrefixExpr { | 1213 | impl PrefixExpr { |
1214 | pub fn prefix_op(&self) -> Option<PrefixOp> { support::token(&self.syntax) } | 1214 | pub fn prefix_op_token(&self) -> Option<PrefixOp> { support::token(&self.syntax) } |
1215 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 1215 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
1216 | } | 1216 | } |
1217 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1217 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1231,7 +1231,7 @@ impl AstNode for BoxExpr { | |||
1231 | } | 1231 | } |
1232 | impl ast::AttrsOwner for BoxExpr {} | 1232 | impl ast::AttrsOwner for BoxExpr {} |
1233 | impl BoxExpr { | 1233 | impl BoxExpr { |
1234 | pub fn box_kw(&self) -> Option<BoxKw> { support::token(&self.syntax) } | 1234 | pub fn box_kw_token(&self) -> Option<BoxKw> { support::token(&self.syntax) } |
1235 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 1235 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
1236 | } | 1236 | } |
1237 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1237 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1251,7 +1251,7 @@ impl AstNode for RangeExpr { | |||
1251 | } | 1251 | } |
1252 | impl ast::AttrsOwner for RangeExpr {} | 1252 | impl ast::AttrsOwner for RangeExpr {} |
1253 | impl RangeExpr { | 1253 | impl RangeExpr { |
1254 | pub fn range_op(&self) -> Option<RangeOp> { support::token(&self.syntax) } | 1254 | pub fn range_op_token(&self) -> Option<RangeOp> { support::token(&self.syntax) } |
1255 | } | 1255 | } |
1256 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1256 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1257 | pub struct BinExpr { | 1257 | pub struct BinExpr { |
@@ -1270,7 +1270,7 @@ impl AstNode for BinExpr { | |||
1270 | } | 1270 | } |
1271 | impl ast::AttrsOwner for BinExpr {} | 1271 | impl ast::AttrsOwner for BinExpr {} |
1272 | impl BinExpr { | 1272 | impl BinExpr { |
1273 | pub fn bin_op(&self) -> Option<BinOp> { support::token(&self.syntax) } | 1273 | pub fn bin_op_token(&self) -> Option<BinOp> { support::token(&self.syntax) } |
1274 | } | 1274 | } |
1275 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1275 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1276 | pub struct Literal { | 1276 | pub struct Literal { |
@@ -1288,7 +1288,7 @@ impl AstNode for Literal { | |||
1288 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1288 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1289 | } | 1289 | } |
1290 | impl Literal { | 1290 | impl Literal { |
1291 | pub fn literal_token(&self) -> Option<LiteralToken> { support::token(&self.syntax) } | 1291 | pub fn literal_token_token(&self) -> Option<LiteralToken> { support::token(&self.syntax) } |
1292 | } | 1292 | } |
1293 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1293 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1294 | pub struct MatchExpr { | 1294 | pub struct MatchExpr { |
@@ -1307,7 +1307,7 @@ impl AstNode for MatchExpr { | |||
1307 | } | 1307 | } |
1308 | impl ast::AttrsOwner for MatchExpr {} | 1308 | impl ast::AttrsOwner for MatchExpr {} |
1309 | impl MatchExpr { | 1309 | impl MatchExpr { |
1310 | pub fn match_kw(&self) -> Option<MatchKw> { support::token(&self.syntax) } | 1310 | pub fn match_kw_token(&self) -> Option<MatchKw> { support::token(&self.syntax) } |
1311 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 1311 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
1312 | pub fn match_arm_list(&self) -> Option<MatchArmList> { support::child(&self.syntax) } | 1312 | pub fn match_arm_list(&self) -> Option<MatchArmList> { support::child(&self.syntax) } |
1313 | } | 1313 | } |
@@ -1328,9 +1328,9 @@ impl AstNode for MatchArmList { | |||
1328 | } | 1328 | } |
1329 | impl ast::AttrsOwner for MatchArmList {} | 1329 | impl ast::AttrsOwner for MatchArmList {} |
1330 | impl MatchArmList { | 1330 | impl MatchArmList { |
1331 | pub fn l_curly(&self) -> Option<LCurly> { support::token(&self.syntax) } | 1331 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } |
1332 | pub fn arms(&self) -> AstChildren<MatchArm> { support::children(&self.syntax) } | 1332 | pub fn arms(&self) -> AstChildren<MatchArm> { support::children(&self.syntax) } |
1333 | pub fn r_curly(&self) -> Option<RCurly> { support::token(&self.syntax) } | 1333 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } |
1334 | } | 1334 | } |
1335 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1335 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1336 | pub struct MatchArm { | 1336 | pub struct MatchArm { |
@@ -1351,7 +1351,7 @@ impl ast::AttrsOwner for MatchArm {} | |||
1351 | impl MatchArm { | 1351 | impl MatchArm { |
1352 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | 1352 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } |
1353 | pub fn guard(&self) -> Option<MatchGuard> { support::child(&self.syntax) } | 1353 | pub fn guard(&self) -> Option<MatchGuard> { support::child(&self.syntax) } |
1354 | pub fn fat_arrow(&self) -> Option<FatArrow> { support::token(&self.syntax) } | 1354 | pub fn fat_arrow_token(&self) -> Option<FatArrow> { support::token(&self.syntax) } |
1355 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 1355 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
1356 | } | 1356 | } |
1357 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1357 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1370,7 +1370,7 @@ impl AstNode for MatchGuard { | |||
1370 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1370 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1371 | } | 1371 | } |
1372 | impl MatchGuard { | 1372 | impl MatchGuard { |
1373 | pub fn if_kw(&self) -> Option<IfKw> { support::token(&self.syntax) } | 1373 | pub fn if_kw_token(&self) -> Option<IfKw> { support::token(&self.syntax) } |
1374 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 1374 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
1375 | } | 1375 | } |
1376 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1376 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1408,11 +1408,11 @@ impl AstNode for RecordFieldList { | |||
1408 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1408 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1409 | } | 1409 | } |
1410 | impl RecordFieldList { | 1410 | impl RecordFieldList { |
1411 | pub fn l_curly(&self) -> Option<LCurly> { support::token(&self.syntax) } | 1411 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } |
1412 | pub fn fields(&self) -> AstChildren<RecordField> { support::children(&self.syntax) } | 1412 | pub fn fields(&self) -> AstChildren<RecordField> { support::children(&self.syntax) } |
1413 | pub fn dotdot(&self) -> Option<Dotdot> { support::token(&self.syntax) } | 1413 | pub fn dotdot_token(&self) -> Option<Dotdot> { support::token(&self.syntax) } |
1414 | pub fn spread(&self) -> Option<Expr> { support::child(&self.syntax) } | 1414 | pub fn spread(&self) -> Option<Expr> { support::child(&self.syntax) } |
1415 | pub fn r_curly(&self) -> Option<RCurly> { support::token(&self.syntax) } | 1415 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } |
1416 | } | 1416 | } |
1417 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1417 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1418 | pub struct RecordField { | 1418 | pub struct RecordField { |
@@ -1432,7 +1432,7 @@ impl AstNode for RecordField { | |||
1432 | impl ast::AttrsOwner for RecordField {} | 1432 | impl ast::AttrsOwner for RecordField {} |
1433 | impl RecordField { | 1433 | impl RecordField { |
1434 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } | 1434 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } |
1435 | pub fn colon(&self) -> Option<Colon> { support::token(&self.syntax) } | 1435 | pub fn colon_token(&self) -> Option<Colon> { support::token(&self.syntax) } |
1436 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 1436 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
1437 | } | 1437 | } |
1438 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1438 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1469,9 +1469,9 @@ impl AstNode for ParenPat { | |||
1469 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1469 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1470 | } | 1470 | } |
1471 | impl ParenPat { | 1471 | impl ParenPat { |
1472 | pub fn l_paren(&self) -> Option<LParen> { support::token(&self.syntax) } | 1472 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } |
1473 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | 1473 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } |
1474 | pub fn r_paren(&self) -> Option<RParen> { support::token(&self.syntax) } | 1474 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } |
1475 | } | 1475 | } |
1476 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1476 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1477 | pub struct RefPat { | 1477 | pub struct RefPat { |
@@ -1489,8 +1489,8 @@ impl AstNode for RefPat { | |||
1489 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1489 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1490 | } | 1490 | } |
1491 | impl RefPat { | 1491 | impl RefPat { |
1492 | pub fn amp(&self) -> Option<Amp> { support::token(&self.syntax) } | 1492 | pub fn amp_token(&self) -> Option<Amp> { support::token(&self.syntax) } |
1493 | pub fn mut_kw(&self) -> Option<MutKw> { support::token(&self.syntax) } | 1493 | pub fn mut_kw_token(&self) -> Option<MutKw> { support::token(&self.syntax) } |
1494 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | 1494 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } |
1495 | } | 1495 | } |
1496 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1496 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1509,7 +1509,7 @@ impl AstNode for BoxPat { | |||
1509 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1509 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1510 | } | 1510 | } |
1511 | impl BoxPat { | 1511 | impl BoxPat { |
1512 | pub fn box_kw(&self) -> Option<BoxKw> { support::token(&self.syntax) } | 1512 | pub fn box_kw_token(&self) -> Option<BoxKw> { support::token(&self.syntax) } |
1513 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | 1513 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } |
1514 | } | 1514 | } |
1515 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1515 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1530,8 +1530,8 @@ impl AstNode for BindPat { | |||
1530 | impl ast::AttrsOwner for BindPat {} | 1530 | impl ast::AttrsOwner for BindPat {} |
1531 | impl ast::NameOwner for BindPat {} | 1531 | impl ast::NameOwner for BindPat {} |
1532 | impl BindPat { | 1532 | impl BindPat { |
1533 | pub fn ref_kw(&self) -> Option<RefKw> { support::token(&self.syntax) } | 1533 | pub fn ref_kw_token(&self) -> Option<RefKw> { support::token(&self.syntax) } |
1534 | pub fn mut_kw(&self) -> Option<MutKw> { support::token(&self.syntax) } | 1534 | pub fn mut_kw_token(&self) -> Option<MutKw> { support::token(&self.syntax) } |
1535 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | 1535 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } |
1536 | } | 1536 | } |
1537 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1537 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1550,7 +1550,7 @@ impl AstNode for PlaceholderPat { | |||
1550 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1550 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1551 | } | 1551 | } |
1552 | impl PlaceholderPat { | 1552 | impl PlaceholderPat { |
1553 | pub fn underscore(&self) -> Option<Underscore> { support::token(&self.syntax) } | 1553 | pub fn underscore_token(&self) -> Option<Underscore> { support::token(&self.syntax) } |
1554 | } | 1554 | } |
1555 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1555 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1556 | pub struct DotDotPat { | 1556 | pub struct DotDotPat { |
@@ -1568,7 +1568,7 @@ impl AstNode for DotDotPat { | |||
1568 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1568 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1569 | } | 1569 | } |
1570 | impl DotDotPat { | 1570 | impl DotDotPat { |
1571 | pub fn dotdot(&self) -> Option<Dotdot> { support::token(&self.syntax) } | 1571 | pub fn dotdot_token(&self) -> Option<Dotdot> { support::token(&self.syntax) } |
1572 | } | 1572 | } |
1573 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1573 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1574 | pub struct PathPat { | 1574 | pub struct PathPat { |
@@ -1604,9 +1604,9 @@ impl AstNode for SlicePat { | |||
1604 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1604 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1605 | } | 1605 | } |
1606 | impl SlicePat { | 1606 | impl SlicePat { |
1607 | pub fn l_brack(&self) -> Option<LBrack> { support::token(&self.syntax) } | 1607 | pub fn l_brack_token(&self) -> Option<LBrack> { support::token(&self.syntax) } |
1608 | pub fn args(&self) -> AstChildren<Pat> { support::children(&self.syntax) } | 1608 | pub fn args(&self) -> AstChildren<Pat> { support::children(&self.syntax) } |
1609 | pub fn r_brack(&self) -> Option<RBrack> { support::token(&self.syntax) } | 1609 | pub fn r_brack_token(&self) -> Option<RBrack> { support::token(&self.syntax) } |
1610 | } | 1610 | } |
1611 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1611 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1612 | pub struct RangePat { | 1612 | pub struct RangePat { |
@@ -1624,7 +1624,7 @@ impl AstNode for RangePat { | |||
1624 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1624 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1625 | } | 1625 | } |
1626 | impl RangePat { | 1626 | impl RangePat { |
1627 | pub fn range_separator(&self) -> Option<RangeSeparator> { support::token(&self.syntax) } | 1627 | pub fn range_separator_token(&self) -> Option<RangeSeparator> { support::token(&self.syntax) } |
1628 | } | 1628 | } |
1629 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1629 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1630 | pub struct LiteralPat { | 1630 | pub struct LiteralPat { |
@@ -1699,14 +1699,14 @@ impl AstNode for RecordFieldPatList { | |||
1699 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1699 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1700 | } | 1700 | } |
1701 | impl RecordFieldPatList { | 1701 | impl RecordFieldPatList { |
1702 | pub fn l_curly(&self) -> Option<LCurly> { support::token(&self.syntax) } | 1702 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } |
1703 | pub fn pats(&self) -> AstChildren<RecordInnerPat> { support::children(&self.syntax) } | 1703 | pub fn pats(&self) -> AstChildren<RecordInnerPat> { support::children(&self.syntax) } |
1704 | pub fn record_field_pats(&self) -> AstChildren<RecordFieldPat> { | 1704 | pub fn record_field_pats(&self) -> AstChildren<RecordFieldPat> { |
1705 | support::children(&self.syntax) | 1705 | support::children(&self.syntax) |
1706 | } | 1706 | } |
1707 | pub fn bind_pats(&self) -> AstChildren<BindPat> { support::children(&self.syntax) } | 1707 | pub fn bind_pats(&self) -> AstChildren<BindPat> { support::children(&self.syntax) } |
1708 | pub fn dotdot(&self) -> Option<Dotdot> { support::token(&self.syntax) } | 1708 | pub fn dotdot_token(&self) -> Option<Dotdot> { support::token(&self.syntax) } |
1709 | pub fn r_curly(&self) -> Option<RCurly> { support::token(&self.syntax) } | 1709 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } |
1710 | } | 1710 | } |
1711 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1711 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1712 | pub struct RecordFieldPat { | 1712 | pub struct RecordFieldPat { |
@@ -1726,7 +1726,7 @@ impl AstNode for RecordFieldPat { | |||
1726 | impl ast::AttrsOwner for RecordFieldPat {} | 1726 | impl ast::AttrsOwner for RecordFieldPat {} |
1727 | impl ast::NameOwner for RecordFieldPat {} | 1727 | impl ast::NameOwner for RecordFieldPat {} |
1728 | impl RecordFieldPat { | 1728 | impl RecordFieldPat { |
1729 | pub fn colon(&self) -> Option<Colon> { support::token(&self.syntax) } | 1729 | pub fn colon_token(&self) -> Option<Colon> { support::token(&self.syntax) } |
1730 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | 1730 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } |
1731 | } | 1731 | } |
1732 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1732 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1746,9 +1746,9 @@ impl AstNode for TupleStructPat { | |||
1746 | } | 1746 | } |
1747 | impl TupleStructPat { | 1747 | impl TupleStructPat { |
1748 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | 1748 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } |
1749 | pub fn l_paren(&self) -> Option<LParen> { support::token(&self.syntax) } | 1749 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } |
1750 | pub fn args(&self) -> AstChildren<Pat> { support::children(&self.syntax) } | 1750 | pub fn args(&self) -> AstChildren<Pat> { support::children(&self.syntax) } |
1751 | pub fn r_paren(&self) -> Option<RParen> { support::token(&self.syntax) } | 1751 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } |
1752 | } | 1752 | } |
1753 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1753 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1754 | pub struct TuplePat { | 1754 | pub struct TuplePat { |
@@ -1766,9 +1766,9 @@ impl AstNode for TuplePat { | |||
1766 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1766 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1767 | } | 1767 | } |
1768 | impl TuplePat { | 1768 | impl TuplePat { |
1769 | pub fn l_paren(&self) -> Option<LParen> { support::token(&self.syntax) } | 1769 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } |
1770 | pub fn args(&self) -> AstChildren<Pat> { support::children(&self.syntax) } | 1770 | pub fn args(&self) -> AstChildren<Pat> { support::children(&self.syntax) } |
1771 | pub fn r_paren(&self) -> Option<RParen> { support::token(&self.syntax) } | 1771 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } |
1772 | } | 1772 | } |
1773 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1773 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1774 | pub struct Visibility { | 1774 | pub struct Visibility { |
@@ -1786,10 +1786,10 @@ impl AstNode for Visibility { | |||
1786 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1786 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1787 | } | 1787 | } |
1788 | impl Visibility { | 1788 | impl Visibility { |
1789 | pub fn pub_kw(&self) -> Option<PubKw> { support::token(&self.syntax) } | 1789 | pub fn pub_kw_token(&self) -> Option<PubKw> { support::token(&self.syntax) } |
1790 | pub fn super_kw(&self) -> Option<SuperKw> { support::token(&self.syntax) } | 1790 | pub fn super_kw_token(&self) -> Option<SuperKw> { support::token(&self.syntax) } |
1791 | pub fn self_kw(&self) -> Option<SelfKw> { support::token(&self.syntax) } | 1791 | pub fn self_kw_token(&self) -> Option<SelfKw> { support::token(&self.syntax) } |
1792 | pub fn crate_kw(&self) -> Option<CrateKw> { support::token(&self.syntax) } | 1792 | pub fn crate_kw_token(&self) -> Option<CrateKw> { support::token(&self.syntax) } |
1793 | } | 1793 | } |
1794 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1794 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1795 | pub struct Name { | 1795 | pub struct Name { |
@@ -1807,7 +1807,7 @@ impl AstNode for Name { | |||
1807 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1807 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1808 | } | 1808 | } |
1809 | impl Name { | 1809 | impl Name { |
1810 | pub fn ident(&self) -> Option<Ident> { support::token(&self.syntax) } | 1810 | pub fn ident_token(&self) -> Option<Ident> { support::token(&self.syntax) } |
1811 | } | 1811 | } |
1812 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1812 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1813 | pub struct NameRef { | 1813 | pub struct NameRef { |
@@ -1825,7 +1825,7 @@ impl AstNode for NameRef { | |||
1825 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1825 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1826 | } | 1826 | } |
1827 | impl NameRef { | 1827 | impl NameRef { |
1828 | pub fn name_ref_token(&self) -> Option<NameRefToken> { support::token(&self.syntax) } | 1828 | pub fn name_ref_token_token(&self) -> Option<NameRefToken> { support::token(&self.syntax) } |
1829 | } | 1829 | } |
1830 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1830 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1831 | pub struct MacroCall { | 1831 | pub struct MacroCall { |
@@ -1847,9 +1847,9 @@ impl ast::AttrsOwner for MacroCall {} | |||
1847 | impl ast::DocCommentsOwner for MacroCall {} | 1847 | impl ast::DocCommentsOwner for MacroCall {} |
1848 | impl MacroCall { | 1848 | impl MacroCall { |
1849 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | 1849 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } |
1850 | pub fn excl(&self) -> Option<Excl> { support::token(&self.syntax) } | 1850 | pub fn excl_token(&self) -> Option<Excl> { support::token(&self.syntax) } |
1851 | pub fn token_tree(&self) -> Option<TokenTree> { support::child(&self.syntax) } | 1851 | pub fn token_tree(&self) -> Option<TokenTree> { support::child(&self.syntax) } |
1852 | pub fn semi(&self) -> Option<Semi> { support::token(&self.syntax) } | 1852 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } |
1853 | } | 1853 | } |
1854 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1854 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1855 | pub struct Attr { | 1855 | pub struct Attr { |
@@ -1867,13 +1867,13 @@ impl AstNode for Attr { | |||
1867 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1867 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1868 | } | 1868 | } |
1869 | impl Attr { | 1869 | impl Attr { |
1870 | pub fn pound(&self) -> Option<Pound> { support::token(&self.syntax) } | 1870 | pub fn pound_token(&self) -> Option<Pound> { support::token(&self.syntax) } |
1871 | pub fn excl(&self) -> Option<Excl> { support::token(&self.syntax) } | 1871 | pub fn excl_token(&self) -> Option<Excl> { support::token(&self.syntax) } |
1872 | pub fn l_brack(&self) -> Option<LBrack> { support::token(&self.syntax) } | 1872 | pub fn l_brack_token(&self) -> Option<LBrack> { support::token(&self.syntax) } |
1873 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | 1873 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } |
1874 | pub fn eq(&self) -> Option<Eq> { support::token(&self.syntax) } | 1874 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } |
1875 | pub fn input(&self) -> Option<AttrInput> { support::child(&self.syntax) } | 1875 | pub fn input(&self) -> Option<AttrInput> { support::child(&self.syntax) } |
1876 | pub fn r_brack(&self) -> Option<RBrack> { support::token(&self.syntax) } | 1876 | pub fn r_brack_token(&self) -> Option<RBrack> { support::token(&self.syntax) } |
1877 | } | 1877 | } |
1878 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1878 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1879 | pub struct TokenTree { | 1879 | pub struct TokenTree { |
@@ -1907,12 +1907,12 @@ impl AstNode for TypeParamList { | |||
1907 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1907 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1908 | } | 1908 | } |
1909 | impl TypeParamList { | 1909 | impl TypeParamList { |
1910 | pub fn l_angle(&self) -> Option<LAngle> { support::token(&self.syntax) } | 1910 | pub fn l_angle_token(&self) -> Option<LAngle> { support::token(&self.syntax) } |
1911 | pub fn generic_params(&self) -> AstChildren<GenericParam> { support::children(&self.syntax) } | 1911 | pub fn generic_params(&self) -> AstChildren<GenericParam> { support::children(&self.syntax) } |
1912 | pub fn type_params(&self) -> AstChildren<TypeParam> { support::children(&self.syntax) } | 1912 | pub fn type_params(&self) -> AstChildren<TypeParam> { support::children(&self.syntax) } |
1913 | pub fn lifetime_params(&self) -> AstChildren<LifetimeParam> { support::children(&self.syntax) } | 1913 | pub fn lifetime_params(&self) -> AstChildren<LifetimeParam> { support::children(&self.syntax) } |
1914 | pub fn const_params(&self) -> AstChildren<ConstParam> { support::children(&self.syntax) } | 1914 | pub fn const_params(&self) -> AstChildren<ConstParam> { support::children(&self.syntax) } |
1915 | pub fn r_angle(&self) -> Option<RAngle> { support::token(&self.syntax) } | 1915 | pub fn r_angle_token(&self) -> Option<RAngle> { support::token(&self.syntax) } |
1916 | } | 1916 | } |
1917 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1917 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1918 | pub struct TypeParam { | 1918 | pub struct TypeParam { |
@@ -1933,7 +1933,7 @@ impl ast::NameOwner for TypeParam {} | |||
1933 | impl ast::AttrsOwner for TypeParam {} | 1933 | impl ast::AttrsOwner for TypeParam {} |
1934 | impl ast::TypeBoundsOwner for TypeParam {} | 1934 | impl ast::TypeBoundsOwner for TypeParam {} |
1935 | impl TypeParam { | 1935 | impl TypeParam { |
1936 | pub fn eq(&self) -> Option<Eq> { support::token(&self.syntax) } | 1936 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } |
1937 | pub fn default_type(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 1937 | pub fn default_type(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
1938 | } | 1938 | } |
1939 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1939 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1955,7 +1955,7 @@ impl ast::NameOwner for ConstParam {} | |||
1955 | impl ast::AttrsOwner for ConstParam {} | 1955 | impl ast::AttrsOwner for ConstParam {} |
1956 | impl ast::TypeAscriptionOwner for ConstParam {} | 1956 | impl ast::TypeAscriptionOwner for ConstParam {} |
1957 | impl ConstParam { | 1957 | impl ConstParam { |
1958 | pub fn eq(&self) -> Option<Eq> { support::token(&self.syntax) } | 1958 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } |
1959 | pub fn default_val(&self) -> Option<Expr> { support::child(&self.syntax) } | 1959 | pub fn default_val(&self) -> Option<Expr> { support::child(&self.syntax) } |
1960 | } | 1960 | } |
1961 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1961 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -1975,7 +1975,7 @@ impl AstNode for LifetimeParam { | |||
1975 | } | 1975 | } |
1976 | impl ast::AttrsOwner for LifetimeParam {} | 1976 | impl ast::AttrsOwner for LifetimeParam {} |
1977 | impl LifetimeParam { | 1977 | impl LifetimeParam { |
1978 | pub fn lifetime(&self) -> Option<Lifetime> { support::token(&self.syntax) } | 1978 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } |
1979 | } | 1979 | } |
1980 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 1980 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
1981 | pub struct TypeBound { | 1981 | pub struct TypeBound { |
@@ -1993,8 +1993,8 @@ impl AstNode for TypeBound { | |||
1993 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 1993 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
1994 | } | 1994 | } |
1995 | impl TypeBound { | 1995 | impl TypeBound { |
1996 | pub fn lifetime(&self) -> Option<Lifetime> { support::token(&self.syntax) } | 1996 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } |
1997 | pub fn const_kw(&self) -> Option<ConstKw> { support::token(&self.syntax) } | 1997 | pub fn const_kw_token(&self) -> Option<ConstKw> { support::token(&self.syntax) } |
1998 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 1998 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
1999 | } | 1999 | } |
2000 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2000 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -2032,7 +2032,7 @@ impl AstNode for WherePred { | |||
2032 | } | 2032 | } |
2033 | impl ast::TypeBoundsOwner for WherePred {} | 2033 | impl ast::TypeBoundsOwner for WherePred {} |
2034 | impl WherePred { | 2034 | impl WherePred { |
2035 | pub fn lifetime(&self) -> Option<Lifetime> { support::token(&self.syntax) } | 2035 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } |
2036 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 2036 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
2037 | } | 2037 | } |
2038 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2038 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -2051,7 +2051,7 @@ impl AstNode for WhereClause { | |||
2051 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 2051 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
2052 | } | 2052 | } |
2053 | impl WhereClause { | 2053 | impl WhereClause { |
2054 | pub fn where_kw(&self) -> Option<WhereKw> { support::token(&self.syntax) } | 2054 | pub fn where_kw_token(&self) -> Option<WhereKw> { support::token(&self.syntax) } |
2055 | pub fn predicates(&self) -> AstChildren<WherePred> { support::children(&self.syntax) } | 2055 | pub fn predicates(&self) -> AstChildren<WherePred> { support::children(&self.syntax) } |
2056 | } | 2056 | } |
2057 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2057 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -2070,7 +2070,7 @@ impl AstNode for Abi { | |||
2070 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 2070 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
2071 | } | 2071 | } |
2072 | impl Abi { | 2072 | impl Abi { |
2073 | pub fn string(&self) -> Option<String> { support::token(&self.syntax) } | 2073 | pub fn string_token(&self) -> Option<String> { support::token(&self.syntax) } |
2074 | } | 2074 | } |
2075 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2075 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2076 | pub struct ExprStmt { | 2076 | pub struct ExprStmt { |
@@ -2090,7 +2090,7 @@ impl AstNode for ExprStmt { | |||
2090 | impl ast::AttrsOwner for ExprStmt {} | 2090 | impl ast::AttrsOwner for ExprStmt {} |
2091 | impl ExprStmt { | 2091 | impl ExprStmt { |
2092 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 2092 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
2093 | pub fn semi(&self) -> Option<Semi> { support::token(&self.syntax) } | 2093 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } |
2094 | } | 2094 | } |
2095 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2095 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2096 | pub struct LetStmt { | 2096 | pub struct LetStmt { |
@@ -2110,9 +2110,9 @@ impl AstNode for LetStmt { | |||
2110 | impl ast::AttrsOwner for LetStmt {} | 2110 | impl ast::AttrsOwner for LetStmt {} |
2111 | impl ast::TypeAscriptionOwner for LetStmt {} | 2111 | impl ast::TypeAscriptionOwner for LetStmt {} |
2112 | impl LetStmt { | 2112 | impl LetStmt { |
2113 | pub fn let_kw(&self) -> Option<LetKw> { support::token(&self.syntax) } | 2113 | pub fn let_kw_token(&self) -> Option<LetKw> { support::token(&self.syntax) } |
2114 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | 2114 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } |
2115 | pub fn eq(&self) -> Option<Eq> { support::token(&self.syntax) } | 2115 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } |
2116 | pub fn initializer(&self) -> Option<Expr> { support::child(&self.syntax) } | 2116 | pub fn initializer(&self) -> Option<Expr> { support::child(&self.syntax) } |
2117 | } | 2117 | } |
2118 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2118 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -2131,9 +2131,9 @@ impl AstNode for Condition { | |||
2131 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 2131 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
2132 | } | 2132 | } |
2133 | impl Condition { | 2133 | impl Condition { |
2134 | pub fn let_kw(&self) -> Option<LetKw> { support::token(&self.syntax) } | 2134 | pub fn let_kw_token(&self) -> Option<LetKw> { support::token(&self.syntax) } |
2135 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | 2135 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } |
2136 | pub fn eq(&self) -> Option<Eq> { support::token(&self.syntax) } | 2136 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } |
2137 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 2137 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
2138 | } | 2138 | } |
2139 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2139 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -2154,10 +2154,10 @@ impl AstNode for Block { | |||
2154 | impl ast::AttrsOwner for Block {} | 2154 | impl ast::AttrsOwner for Block {} |
2155 | impl ast::ModuleItemOwner for Block {} | 2155 | impl ast::ModuleItemOwner for Block {} |
2156 | impl Block { | 2156 | impl Block { |
2157 | pub fn l_curly(&self) -> Option<LCurly> { support::token(&self.syntax) } | 2157 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } |
2158 | pub fn statements(&self) -> AstChildren<Stmt> { support::children(&self.syntax) } | 2158 | pub fn statements(&self) -> AstChildren<Stmt> { support::children(&self.syntax) } |
2159 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | 2159 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } |
2160 | pub fn r_curly(&self) -> Option<RCurly> { support::token(&self.syntax) } | 2160 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } |
2161 | } | 2161 | } |
2162 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2162 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2163 | pub struct ParamList { | 2163 | pub struct ParamList { |
@@ -2175,10 +2175,10 @@ impl AstNode for ParamList { | |||
2175 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 2175 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
2176 | } | 2176 | } |
2177 | impl ParamList { | 2177 | impl ParamList { |
2178 | pub fn l_paren(&self) -> Option<LParen> { support::token(&self.syntax) } | 2178 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } |
2179 | pub fn self_param(&self) -> Option<SelfParam> { support::child(&self.syntax) } | 2179 | pub fn self_param(&self) -> Option<SelfParam> { support::child(&self.syntax) } |
2180 | pub fn params(&self) -> AstChildren<Param> { support::children(&self.syntax) } | 2180 | pub fn params(&self) -> AstChildren<Param> { support::children(&self.syntax) } |
2181 | pub fn r_paren(&self) -> Option<RParen> { support::token(&self.syntax) } | 2181 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } |
2182 | } | 2182 | } |
2183 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2183 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2184 | pub struct SelfParam { | 2184 | pub struct SelfParam { |
@@ -2198,9 +2198,9 @@ impl AstNode for SelfParam { | |||
2198 | impl ast::TypeAscriptionOwner for SelfParam {} | 2198 | impl ast::TypeAscriptionOwner for SelfParam {} |
2199 | impl ast::AttrsOwner for SelfParam {} | 2199 | impl ast::AttrsOwner for SelfParam {} |
2200 | impl SelfParam { | 2200 | impl SelfParam { |
2201 | pub fn amp(&self) -> Option<Amp> { support::token(&self.syntax) } | 2201 | pub fn amp_token(&self) -> Option<Amp> { support::token(&self.syntax) } |
2202 | pub fn lifetime(&self) -> Option<Lifetime> { support::token(&self.syntax) } | 2202 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } |
2203 | pub fn self_kw(&self) -> Option<SelfKw> { support::token(&self.syntax) } | 2203 | pub fn self_kw_token(&self) -> Option<SelfKw> { support::token(&self.syntax) } |
2204 | } | 2204 | } |
2205 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2205 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2206 | pub struct Param { | 2206 | pub struct Param { |
@@ -2221,7 +2221,7 @@ impl ast::TypeAscriptionOwner for Param {} | |||
2221 | impl ast::AttrsOwner for Param {} | 2221 | impl ast::AttrsOwner for Param {} |
2222 | impl Param { | 2222 | impl Param { |
2223 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | 2223 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } |
2224 | pub fn dotdotdot(&self) -> Option<Dotdotdot> { support::token(&self.syntax) } | 2224 | pub fn dotdotdot_token(&self) -> Option<Dotdotdot> { support::token(&self.syntax) } |
2225 | } | 2225 | } |
2226 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2226 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2227 | pub struct UseItem { | 2227 | pub struct UseItem { |
@@ -2241,7 +2241,7 @@ impl AstNode for UseItem { | |||
2241 | impl ast::AttrsOwner for UseItem {} | 2241 | impl ast::AttrsOwner for UseItem {} |
2242 | impl ast::VisibilityOwner for UseItem {} | 2242 | impl ast::VisibilityOwner for UseItem {} |
2243 | impl UseItem { | 2243 | impl UseItem { |
2244 | pub fn use_kw(&self) -> Option<UseKw> { support::token(&self.syntax) } | 2244 | pub fn use_kw_token(&self) -> Option<UseKw> { support::token(&self.syntax) } |
2245 | pub fn use_tree(&self) -> Option<UseTree> { support::child(&self.syntax) } | 2245 | pub fn use_tree(&self) -> Option<UseTree> { support::child(&self.syntax) } |
2246 | } | 2246 | } |
2247 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2247 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -2261,7 +2261,7 @@ impl AstNode for UseTree { | |||
2261 | } | 2261 | } |
2262 | impl UseTree { | 2262 | impl UseTree { |
2263 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | 2263 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } |
2264 | pub fn star(&self) -> Option<Star> { support::token(&self.syntax) } | 2264 | pub fn star_token(&self) -> Option<Star> { support::token(&self.syntax) } |
2265 | pub fn use_tree_list(&self) -> Option<UseTreeList> { support::child(&self.syntax) } | 2265 | pub fn use_tree_list(&self) -> Option<UseTreeList> { support::child(&self.syntax) } |
2266 | pub fn alias(&self) -> Option<Alias> { support::child(&self.syntax) } | 2266 | pub fn alias(&self) -> Option<Alias> { support::child(&self.syntax) } |
2267 | } | 2267 | } |
@@ -2282,7 +2282,7 @@ impl AstNode for Alias { | |||
2282 | } | 2282 | } |
2283 | impl ast::NameOwner for Alias {} | 2283 | impl ast::NameOwner for Alias {} |
2284 | impl Alias { | 2284 | impl Alias { |
2285 | pub fn as_kw(&self) -> Option<AsKw> { support::token(&self.syntax) } | 2285 | pub fn as_kw_token(&self) -> Option<AsKw> { support::token(&self.syntax) } |
2286 | } | 2286 | } |
2287 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2287 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2288 | pub struct UseTreeList { | 2288 | pub struct UseTreeList { |
@@ -2300,9 +2300,9 @@ impl AstNode for UseTreeList { | |||
2300 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 2300 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
2301 | } | 2301 | } |
2302 | impl UseTreeList { | 2302 | impl UseTreeList { |
2303 | pub fn l_curly(&self) -> Option<LCurly> { support::token(&self.syntax) } | 2303 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } |
2304 | pub fn use_trees(&self) -> AstChildren<UseTree> { support::children(&self.syntax) } | 2304 | pub fn use_trees(&self) -> AstChildren<UseTree> { support::children(&self.syntax) } |
2305 | pub fn r_curly(&self) -> Option<RCurly> { support::token(&self.syntax) } | 2305 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } |
2306 | } | 2306 | } |
2307 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2307 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2308 | pub struct ExternCrateItem { | 2308 | pub struct ExternCrateItem { |
@@ -2322,8 +2322,8 @@ impl AstNode for ExternCrateItem { | |||
2322 | impl ast::AttrsOwner for ExternCrateItem {} | 2322 | impl ast::AttrsOwner for ExternCrateItem {} |
2323 | impl ast::VisibilityOwner for ExternCrateItem {} | 2323 | impl ast::VisibilityOwner for ExternCrateItem {} |
2324 | impl ExternCrateItem { | 2324 | impl ExternCrateItem { |
2325 | pub fn extern_kw(&self) -> Option<ExternKw> { support::token(&self.syntax) } | 2325 | pub fn extern_kw_token(&self) -> Option<ExternKw> { support::token(&self.syntax) } |
2326 | pub fn crate_kw(&self) -> Option<CrateKw> { support::token(&self.syntax) } | 2326 | pub fn crate_kw_token(&self) -> Option<CrateKw> { support::token(&self.syntax) } |
2327 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } | 2327 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } |
2328 | pub fn alias(&self) -> Option<Alias> { support::child(&self.syntax) } | 2328 | pub fn alias(&self) -> Option<Alias> { support::child(&self.syntax) } |
2329 | } | 2329 | } |
@@ -2343,9 +2343,9 @@ impl AstNode for ArgList { | |||
2343 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 2343 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
2344 | } | 2344 | } |
2345 | impl ArgList { | 2345 | impl ArgList { |
2346 | pub fn l_paren(&self) -> Option<LParen> { support::token(&self.syntax) } | 2346 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } |
2347 | pub fn args(&self) -> AstChildren<Expr> { support::children(&self.syntax) } | 2347 | pub fn args(&self) -> AstChildren<Expr> { support::children(&self.syntax) } |
2348 | pub fn r_paren(&self) -> Option<RParen> { support::token(&self.syntax) } | 2348 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } |
2349 | } | 2349 | } |
2350 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2350 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2351 | pub struct Path { | 2351 | pub struct Path { |
@@ -2382,14 +2382,14 @@ impl AstNode for PathSegment { | |||
2382 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 2382 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
2383 | } | 2383 | } |
2384 | impl PathSegment { | 2384 | impl PathSegment { |
2385 | pub fn coloncolon(&self) -> Option<Coloncolon> { support::token(&self.syntax) } | 2385 | pub fn coloncolon_token(&self) -> Option<Coloncolon> { support::token(&self.syntax) } |
2386 | pub fn l_angle(&self) -> Option<LAngle> { support::token(&self.syntax) } | 2386 | pub fn l_angle_token(&self) -> Option<LAngle> { support::token(&self.syntax) } |
2387 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } | 2387 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } |
2388 | pub fn type_arg_list(&self) -> Option<TypeArgList> { support::child(&self.syntax) } | 2388 | pub fn type_arg_list(&self) -> Option<TypeArgList> { support::child(&self.syntax) } |
2389 | pub fn param_list(&self) -> Option<ParamList> { support::child(&self.syntax) } | 2389 | pub fn param_list(&self) -> Option<ParamList> { support::child(&self.syntax) } |
2390 | pub fn ret_type(&self) -> Option<RetType> { support::child(&self.syntax) } | 2390 | pub fn ret_type(&self) -> Option<RetType> { support::child(&self.syntax) } |
2391 | pub fn path_type(&self) -> Option<PathType> { support::child(&self.syntax) } | 2391 | pub fn path_type(&self) -> Option<PathType> { support::child(&self.syntax) } |
2392 | pub fn r_angle(&self) -> Option<RAngle> { support::token(&self.syntax) } | 2392 | pub fn r_angle_token(&self) -> Option<RAngle> { support::token(&self.syntax) } |
2393 | } | 2393 | } |
2394 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2394 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2395 | pub struct TypeArgList { | 2395 | pub struct TypeArgList { |
@@ -2407,14 +2407,14 @@ impl AstNode for TypeArgList { | |||
2407 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 2407 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
2408 | } | 2408 | } |
2409 | impl TypeArgList { | 2409 | impl TypeArgList { |
2410 | pub fn coloncolon(&self) -> Option<Coloncolon> { support::token(&self.syntax) } | 2410 | pub fn coloncolon_token(&self) -> Option<Coloncolon> { support::token(&self.syntax) } |
2411 | pub fn l_angle(&self) -> Option<LAngle> { support::token(&self.syntax) } | 2411 | pub fn l_angle_token(&self) -> Option<LAngle> { support::token(&self.syntax) } |
2412 | pub fn generic_args(&self) -> AstChildren<GenericArg> { support::children(&self.syntax) } | 2412 | pub fn generic_args(&self) -> AstChildren<GenericArg> { support::children(&self.syntax) } |
2413 | pub fn type_args(&self) -> AstChildren<TypeArg> { support::children(&self.syntax) } | 2413 | pub fn type_args(&self) -> AstChildren<TypeArg> { support::children(&self.syntax) } |
2414 | pub fn lifetime_args(&self) -> AstChildren<LifetimeArg> { support::children(&self.syntax) } | 2414 | pub fn lifetime_args(&self) -> AstChildren<LifetimeArg> { support::children(&self.syntax) } |
2415 | pub fn assoc_type_args(&self) -> AstChildren<AssocTypeArg> { support::children(&self.syntax) } | 2415 | pub fn assoc_type_args(&self) -> AstChildren<AssocTypeArg> { support::children(&self.syntax) } |
2416 | pub fn const_args(&self) -> AstChildren<ConstArg> { support::children(&self.syntax) } | 2416 | pub fn const_args(&self) -> AstChildren<ConstArg> { support::children(&self.syntax) } |
2417 | pub fn r_angle(&self) -> Option<RAngle> { support::token(&self.syntax) } | 2417 | pub fn r_angle_token(&self) -> Option<RAngle> { support::token(&self.syntax) } |
2418 | } | 2418 | } |
2419 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2419 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2420 | pub struct TypeArg { | 2420 | pub struct TypeArg { |
@@ -2452,7 +2452,7 @@ impl AstNode for AssocTypeArg { | |||
2452 | impl ast::TypeBoundsOwner for AssocTypeArg {} | 2452 | impl ast::TypeBoundsOwner for AssocTypeArg {} |
2453 | impl AssocTypeArg { | 2453 | impl AssocTypeArg { |
2454 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } | 2454 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } |
2455 | pub fn eq(&self) -> Option<Eq> { support::token(&self.syntax) } | 2455 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } |
2456 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | 2456 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } |
2457 | } | 2457 | } |
2458 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2458 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -2471,7 +2471,7 @@ impl AstNode for LifetimeArg { | |||
2471 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 2471 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
2472 | } | 2472 | } |
2473 | impl LifetimeArg { | 2473 | impl LifetimeArg { |
2474 | pub fn lifetime(&self) -> Option<Lifetime> { support::token(&self.syntax) } | 2474 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } |
2475 | } | 2475 | } |
2476 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2476 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2477 | pub struct ConstArg { | 2477 | pub struct ConstArg { |
@@ -2490,7 +2490,7 @@ impl AstNode for ConstArg { | |||
2490 | } | 2490 | } |
2491 | impl ConstArg { | 2491 | impl ConstArg { |
2492 | pub fn literal(&self) -> Option<Literal> { support::child(&self.syntax) } | 2492 | pub fn literal(&self) -> Option<Literal> { support::child(&self.syntax) } |
2493 | pub fn eq(&self) -> Option<Eq> { support::token(&self.syntax) } | 2493 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } |
2494 | pub fn block_expr(&self) -> Option<BlockExpr> { support::child(&self.syntax) } | 2494 | pub fn block_expr(&self) -> Option<BlockExpr> { support::child(&self.syntax) } |
2495 | } | 2495 | } |
2496 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2496 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -2548,9 +2548,9 @@ impl AstNode for ExternItemList { | |||
2548 | impl ast::FnDefOwner for ExternItemList {} | 2548 | impl ast::FnDefOwner for ExternItemList {} |
2549 | impl ast::ModuleItemOwner for ExternItemList {} | 2549 | impl ast::ModuleItemOwner for ExternItemList {} |
2550 | impl ExternItemList { | 2550 | impl ExternItemList { |
2551 | pub fn l_curly(&self) -> Option<LCurly> { support::token(&self.syntax) } | 2551 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } |
2552 | pub fn extern_items(&self) -> AstChildren<ExternItem> { support::children(&self.syntax) } | 2552 | pub fn extern_items(&self) -> AstChildren<ExternItem> { support::children(&self.syntax) } |
2553 | pub fn r_curly(&self) -> Option<RCurly> { support::token(&self.syntax) } | 2553 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } |
2554 | } | 2554 | } |
2555 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2555 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
2556 | pub struct ExternBlock { | 2556 | pub struct ExternBlock { |
@@ -2588,7 +2588,7 @@ impl AstNode for MetaItem { | |||
2588 | } | 2588 | } |
2589 | impl MetaItem { | 2589 | impl MetaItem { |
2590 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | 2590 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } |
2591 | pub fn eq(&self) -> Option<Eq> { support::token(&self.syntax) } | 2591 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } |
2592 | pub fn attr_input(&self) -> Option<AttrInput> { support::child(&self.syntax) } | 2592 | pub fn attr_input(&self) -> Option<AttrInput> { support::child(&self.syntax) } |
2593 | pub fn nested_meta_items(&self) -> AstChildren<MetaItem> { support::children(&self.syntax) } | 2593 | pub fn nested_meta_items(&self) -> AstChildren<MetaItem> { support::children(&self.syntax) } |
2594 | } | 2594 | } |