diff options
52 files changed, 8670 insertions, 5326 deletions
diff --git a/Cargo.lock b/Cargo.lock index eb9824218..34f05e83a 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -1081,6 +1081,7 @@ version = "0.1.0" | |||
1081 | dependencies = [ | 1081 | dependencies = [ |
1082 | "cargo_metadata", | 1082 | "cargo_metadata", |
1083 | "difference", | 1083 | "difference", |
1084 | "ra_mbe", | ||
1084 | "ra_proc_macro", | 1085 | "ra_proc_macro", |
1085 | "ra_tt", | 1086 | "ra_tt", |
1086 | "serde_derive", | 1087 | "serde_derive", |
diff --git a/crates/ra_assists/src/handlers/add_explicit_type.rs b/crates/ra_assists/src/handlers/add_explicit_type.rs index d86d804b2..e7dcfb44e 100644 --- a/crates/ra_assists/src/handlers/add_explicit_type.rs +++ b/crates/ra_assists/src/handlers/add_explicit_type.rs | |||
@@ -1,6 +1,6 @@ | |||
1 | use hir::HirDisplay; | 1 | use hir::HirDisplay; |
2 | use ra_syntax::{ | 2 | use ra_syntax::{ |
3 | ast::{self, AstNode, LetStmt, NameOwner, TypeAscriptionOwner}, | 3 | ast::{self, AstNode, AstToken, LetStmt, NameOwner, TypeAscriptionOwner}, |
4 | TextRange, | 4 | TextRange, |
5 | }; | 5 | }; |
6 | 6 | ||
@@ -35,7 +35,7 @@ pub(crate) fn add_explicit_type(ctx: AssistCtx) -> Option<Assist> { | |||
35 | let name = pat.name()?; | 35 | let name = pat.name()?; |
36 | let name_range = name.syntax().text_range(); | 36 | let name_range = name.syntax().text_range(); |
37 | let stmt_range = stmt.syntax().text_range(); | 37 | let stmt_range = stmt.syntax().text_range(); |
38 | let eq_range = stmt.eq_token()?.text_range(); | 38 | let eq_range = stmt.eq_token()?.syntax().text_range(); |
39 | // Assist should only be applicable if cursor is between 'let' and '=' | 39 | // Assist should only be applicable if cursor is between 'let' and '=' |
40 | let let_range = TextRange::from_to(stmt_range.start(), eq_range.start()); | 40 | let let_range = TextRange::from_to(stmt_range.start(), eq_range.start()); |
41 | let cursor_in_range = ctx.frange.range.is_subrange(&let_range); | 41 | let cursor_in_range = ctx.frange.range.is_subrange(&let_range); |
diff --git a/crates/ra_assists/src/handlers/add_impl.rs b/crates/ra_assists/src/handlers/add_impl.rs index 6622eadb2..26dfed237 100644 --- a/crates/ra_assists/src/handlers/add_impl.rs +++ b/crates/ra_assists/src/handlers/add_impl.rs | |||
@@ -1,5 +1,5 @@ | |||
1 | use ra_syntax::{ | 1 | use ra_syntax::{ |
2 | ast::{self, AstNode, NameOwner, TypeParamsOwner}, | 2 | ast::{self, AstNode, AstToken, NameOwner, TypeParamsOwner}, |
3 | TextUnit, | 3 | TextUnit, |
4 | }; | 4 | }; |
5 | use stdx::{format_to, SepBy}; | 5 | use stdx::{format_to, SepBy}; |
diff --git a/crates/ra_assists/src/handlers/add_new.rs b/crates/ra_assists/src/handlers/add_new.rs index 240b19fa3..30360af94 100644 --- a/crates/ra_assists/src/handlers/add_new.rs +++ b/crates/ra_assists/src/handlers/add_new.rs | |||
@@ -1,7 +1,8 @@ | |||
1 | use hir::Adt; | 1 | use hir::Adt; |
2 | use ra_syntax::{ | 2 | use ra_syntax::{ |
3 | ast::{ | 3 | ast::{ |
4 | self, AstNode, NameOwner, StructKind, TypeAscriptionOwner, TypeParamsOwner, VisibilityOwner, | 4 | self, AstNode, AstToken, NameOwner, StructKind, TypeAscriptionOwner, TypeParamsOwner, |
5 | VisibilityOwner, | ||
5 | }, | 6 | }, |
6 | TextUnit, T, | 7 | TextUnit, T, |
7 | }; | 8 | }; |
diff --git a/crates/ra_assists/src/handlers/inline_local_variable.rs b/crates/ra_assists/src/handlers/inline_local_variable.rs index 3bfcba8ff..b9eb09676 100644 --- a/crates/ra_assists/src/handlers/inline_local_variable.rs +++ b/crates/ra_assists/src/handlers/inline_local_variable.rs | |||
@@ -29,7 +29,7 @@ pub(crate) fn inline_local_variable(ctx: AssistCtx) -> Option<Assist> { | |||
29 | ast::Pat::BindPat(pat) => pat, | 29 | ast::Pat::BindPat(pat) => pat, |
30 | _ => return None, | 30 | _ => return None, |
31 | }; | 31 | }; |
32 | if bind_pat.is_mutable() { | 32 | if bind_pat.mut_kw_token().is_some() { |
33 | tested_by!(test_not_inline_mut_variable); | 33 | tested_by!(test_not_inline_mut_variable); |
34 | return None; | 34 | return None; |
35 | } | 35 | } |
diff --git a/crates/ra_assists/src/handlers/introduce_variable.rs b/crates/ra_assists/src/handlers/introduce_variable.rs index 1edbdc14c..ab6bdf6bb 100644 --- a/crates/ra_assists/src/handlers/introduce_variable.rs +++ b/crates/ra_assists/src/handlers/introduce_variable.rs | |||
@@ -61,7 +61,7 @@ pub(crate) fn introduce_variable(ctx: AssistCtx) -> Option<Assist> { | |||
61 | }; | 61 | }; |
62 | if is_full_stmt { | 62 | if is_full_stmt { |
63 | tested_by!(test_introduce_var_expr_stmt); | 63 | tested_by!(test_introduce_var_expr_stmt); |
64 | if !full_stmt.unwrap().has_semi() { | 64 | if full_stmt.unwrap().semi_token().is_none() { |
65 | buf.push_str(";"); | 65 | buf.push_str(";"); |
66 | } | 66 | } |
67 | edit.replace(expr.syntax().text_range(), buf); | 67 | edit.replace(expr.syntax().text_range(), buf); |
@@ -124,7 +124,7 @@ fn anchor_stmt(expr: ast::Expr) -> Option<(SyntaxNode, bool)> { | |||
124 | } | 124 | } |
125 | } | 125 | } |
126 | 126 | ||
127 | if ast::Stmt::cast(node.clone()).is_some() { | 127 | if ast::Stmt::cast(node.clone().into()).is_some() { |
128 | return Some((node, false)); | 128 | return Some((node, false)); |
129 | } | 129 | } |
130 | 130 | ||
diff --git a/crates/ra_assists/src/handlers/merge_imports.rs b/crates/ra_assists/src/handlers/merge_imports.rs index 5d4b74e56..936d50ab4 100644 --- a/crates/ra_assists/src/handlers/merge_imports.rs +++ b/crates/ra_assists/src/handlers/merge_imports.rs | |||
@@ -3,7 +3,7 @@ use std::iter::successors; | |||
3 | use ra_syntax::{ | 3 | use ra_syntax::{ |
4 | algo::{neighbor, SyntaxRewriter}, | 4 | algo::{neighbor, SyntaxRewriter}, |
5 | ast::{self, edit::AstNodeEdit, make}, | 5 | ast::{self, edit::AstNodeEdit, make}, |
6 | AstNode, Direction, InsertPosition, SyntaxElement, T, | 6 | AstNode, AstToken, Direction, InsertPosition, SyntaxElement, T, |
7 | }; | 7 | }; |
8 | 8 | ||
9 | use crate::{Assist, AssistCtx, AssistId}; | 9 | use crate::{Assist, AssistCtx, AssistId}; |
@@ -82,7 +82,7 @@ fn try_merge_trees(old: &ast::UseTree, new: &ast::UseTree) -> Option<ast::UseTre | |||
82 | .filter(|it| it.kind() != T!['{'] && it.kind() != T!['}']), | 82 | .filter(|it| it.kind() != T!['{'] && it.kind() != T!['}']), |
83 | ); | 83 | ); |
84 | let use_tree_list = lhs.use_tree_list()?; | 84 | let use_tree_list = lhs.use_tree_list()?; |
85 | let pos = InsertPosition::Before(use_tree_list.r_curly()?.into()); | 85 | let pos = InsertPosition::Before(use_tree_list.r_curly_token()?.syntax().clone().into()); |
86 | let use_tree_list = use_tree_list.insert_children(pos, to_insert); | 86 | let use_tree_list = use_tree_list.insert_children(pos, to_insert); |
87 | Some(lhs.with_use_tree_list(use_tree_list)) | 87 | Some(lhs.with_use_tree_list(use_tree_list)) |
88 | } | 88 | } |
diff --git a/crates/ra_assists/src/lib.rs b/crates/ra_assists/src/lib.rs index c698d6e8c..5ba5254fd 100644 --- a/crates/ra_assists/src/lib.rs +++ b/crates/ra_assists/src/lib.rs | |||
@@ -132,13 +132,12 @@ mod handlers { | |||
132 | 132 | ||
133 | pub(crate) fn all() -> &'static [AssistHandler] { | 133 | pub(crate) fn all() -> &'static [AssistHandler] { |
134 | &[ | 134 | &[ |
135 | // These are alphabetic for the foolish consistency | ||
135 | add_custom_impl::add_custom_impl, | 136 | add_custom_impl::add_custom_impl, |
136 | add_derive::add_derive, | 137 | add_derive::add_derive, |
137 | add_explicit_type::add_explicit_type, | 138 | add_explicit_type::add_explicit_type, |
138 | add_function::add_function, | 139 | add_function::add_function, |
139 | add_impl::add_impl, | 140 | add_impl::add_impl, |
140 | add_missing_impl_members::add_missing_default_members, | ||
141 | add_missing_impl_members::add_missing_impl_members, | ||
142 | add_new::add_new, | 141 | add_new::add_new, |
143 | apply_demorgan::apply_demorgan, | 142 | apply_demorgan::apply_demorgan, |
144 | auto_import::auto_import, | 143 | auto_import::auto_import, |
@@ -168,6 +167,9 @@ mod handlers { | |||
168 | replace_unwrap_with_match::replace_unwrap_with_match, | 167 | replace_unwrap_with_match::replace_unwrap_with_match, |
169 | split_import::split_import, | 168 | split_import::split_import, |
170 | add_from_impl_for_enum::add_from_impl_for_enum, | 169 | add_from_impl_for_enum::add_from_impl_for_enum, |
170 | // These are manually sorted for better priorities | ||
171 | add_missing_impl_members::add_missing_impl_members, | ||
172 | add_missing_impl_members::add_missing_default_members, | ||
171 | ] | 173 | ] |
172 | } | 174 | } |
173 | } | 175 | } |
diff --git a/crates/ra_fmt/src/lib.rs b/crates/ra_fmt/src/lib.rs index db27f9b83..0b4ba1bbe 100644 --- a/crates/ra_fmt/src/lib.rs +++ b/crates/ra_fmt/src/lib.rs | |||
@@ -60,10 +60,10 @@ pub fn extract_trivial_expression(block: &ast::BlockExpr) -> Option<ast::Expr> { | |||
60 | } else { | 60 | } else { |
61 | // Unwrap `{ continue; }` | 61 | // Unwrap `{ continue; }` |
62 | let (stmt,) = block.statements().next_tuple()?; | 62 | let (stmt,) = block.statements().next_tuple()?; |
63 | if has_anything_else(stmt.syntax()) { | ||
64 | return None; | ||
65 | } | ||
66 | if let ast::Stmt::ExprStmt(expr_stmt) = stmt { | 63 | if let ast::Stmt::ExprStmt(expr_stmt) = stmt { |
64 | if has_anything_else(expr_stmt.syntax()) { | ||
65 | return None; | ||
66 | } | ||
67 | let expr = expr_stmt.expr()?; | 67 | let expr = expr_stmt.expr()?; |
68 | match expr.syntax().kind() { | 68 | match expr.syntax().kind() { |
69 | CONTINUE_EXPR | BREAK_EXPR | RETURN_EXPR => return Some(expr), | 69 | CONTINUE_EXPR | BREAK_EXPR | RETURN_EXPR => return Some(expr), |
diff --git a/crates/ra_hir_def/src/adt.rs b/crates/ra_hir_def/src/adt.rs index de07fc952..7fc4cd76e 100644 --- a/crates/ra_hir_def/src/adt.rs +++ b/crates/ra_hir_def/src/adt.rs | |||
@@ -54,6 +54,7 @@ pub struct StructFieldData { | |||
54 | impl StructData { | 54 | impl StructData { |
55 | pub(crate) fn struct_data_query(db: &dyn DefDatabase, id: StructId) -> Arc<StructData> { | 55 | pub(crate) fn struct_data_query(db: &dyn DefDatabase, id: StructId) -> Arc<StructData> { |
56 | let src = id.lookup(db).source(db); | 56 | let src = id.lookup(db).source(db); |
57 | |||
57 | let name = src.value.name().map_or_else(Name::missing, |n| n.as_name()); | 58 | let name = src.value.name().map_or_else(Name::missing, |n| n.as_name()); |
58 | let variant_data = VariantData::new(db, src.map(|s| s.kind())); | 59 | let variant_data = VariantData::new(db, src.map(|s| s.kind())); |
59 | let variant_data = Arc::new(variant_data); | 60 | let variant_data = Arc::new(variant_data); |
diff --git a/crates/ra_hir_def/src/body/lower.rs b/crates/ra_hir_def/src/body/lower.rs index 8d4b8b0f0..c4a5ec59c 100644 --- a/crates/ra_hir_def/src/body/lower.rs +++ b/crates/ra_hir_def/src/body/lower.rs | |||
@@ -482,14 +482,16 @@ impl ExprCollector<'_> { | |||
482 | self.collect_block_items(&block); | 482 | self.collect_block_items(&block); |
483 | let statements = block | 483 | let statements = block |
484 | .statements() | 484 | .statements() |
485 | .map(|s| match s { | 485 | .filter_map(|s| match s { |
486 | ast::Stmt::LetStmt(stmt) => { | 486 | ast::Stmt::LetStmt(stmt) => { |
487 | let pat = self.collect_pat_opt(stmt.pat()); | 487 | let pat = self.collect_pat_opt(stmt.pat()); |
488 | let type_ref = stmt.ascribed_type().map(TypeRef::from_ast); | 488 | let type_ref = stmt.ascribed_type().map(TypeRef::from_ast); |
489 | let initializer = stmt.initializer().map(|e| self.collect_expr(e)); | 489 | let initializer = stmt.initializer().map(|e| self.collect_expr(e)); |
490 | Statement::Let { pat, type_ref, initializer } | 490 | Some(Statement::Let { pat, type_ref, initializer }) |
491 | } | ||
492 | ast::Stmt::ExprStmt(stmt) => { | ||
493 | Some(Statement::Expr(self.collect_expr_opt(stmt.expr()))) | ||
491 | } | 494 | } |
492 | ast::Stmt::ExprStmt(stmt) => Statement::Expr(self.collect_expr_opt(stmt.expr())), | ||
493 | }) | 495 | }) |
494 | .collect(); | 496 | .collect(); |
495 | let tail = block.expr().map(|e| self.collect_expr(e)); | 497 | let tail = block.expr().map(|e| self.collect_expr(e)); |
@@ -541,6 +543,7 @@ impl ExprCollector<'_> { | |||
541 | let ast_id = self.expander.ast_id(&def); | 543 | let ast_id = self.expander.ast_id(&def); |
542 | (TraitLoc { container, ast_id }.intern(self.db).into(), def.name()) | 544 | (TraitLoc { container, ast_id }.intern(self.db).into(), def.name()) |
543 | } | 545 | } |
546 | ast::ModuleItem::ExternBlock(_) => continue, // FIXME: collect from extern blocks | ||
544 | ast::ModuleItem::ImplDef(_) | 547 | ast::ModuleItem::ImplDef(_) |
545 | | ast::ModuleItem::UseItem(_) | 548 | | ast::ModuleItem::UseItem(_) |
546 | | ast::ModuleItem::ExternCrateItem(_) | 549 | | ast::ModuleItem::ExternCrateItem(_) |
@@ -569,7 +572,10 @@ impl ExprCollector<'_> { | |||
569 | let pattern = match &pat { | 572 | let pattern = match &pat { |
570 | ast::Pat::BindPat(bp) => { | 573 | ast::Pat::BindPat(bp) => { |
571 | let name = bp.name().map(|nr| nr.as_name()).unwrap_or_else(Name::missing); | 574 | let name = bp.name().map(|nr| nr.as_name()).unwrap_or_else(Name::missing); |
572 | let annotation = BindingAnnotation::new(bp.is_mutable(), bp.is_ref()); | 575 | let annotation = BindingAnnotation::new( |
576 | bp.mut_kw_token().is_some(), | ||
577 | bp.ref_kw_token().is_some(), | ||
578 | ); | ||
573 | let subpat = bp.pat().map(|subpat| self.collect_pat(subpat)); | 579 | let subpat = bp.pat().map(|subpat| self.collect_pat(subpat)); |
574 | if annotation == BindingAnnotation::Unannotated && subpat.is_none() { | 580 | if annotation == BindingAnnotation::Unannotated && subpat.is_none() { |
575 | // This could also be a single-segment path pattern. To | 581 | // This could also be a single-segment path pattern. To |
@@ -610,7 +616,7 @@ impl ExprCollector<'_> { | |||
610 | } | 616 | } |
611 | ast::Pat::RefPat(p) => { | 617 | ast::Pat::RefPat(p) => { |
612 | let pat = self.collect_pat_opt(p.pat()); | 618 | let pat = self.collect_pat_opt(p.pat()); |
613 | let mutability = Mutability::from_mutable(p.is_mut()); | 619 | let mutability = Mutability::from_mutable(p.mut_kw_token().is_some()); |
614 | Pat::Ref { pat, mutability } | 620 | Pat::Ref { pat, mutability } |
615 | } | 621 | } |
616 | ast::Pat::PathPat(p) => { | 622 | ast::Pat::PathPat(p) => { |
diff --git a/crates/ra_hir_def/src/data.rs b/crates/ra_hir_def/src/data.rs index 04bd4a305..689bb6c5c 100644 --- a/crates/ra_hir_def/src/data.rs +++ b/crates/ra_hir_def/src/data.rs | |||
@@ -3,15 +3,18 @@ | |||
3 | use std::sync::Arc; | 3 | use std::sync::Arc; |
4 | 4 | ||
5 | use hir_expand::{ | 5 | use hir_expand::{ |
6 | hygiene::Hygiene, | ||
6 | name::{name, AsName, Name}, | 7 | name::{name, AsName, Name}, |
7 | AstId, InFile, | 8 | AstId, InFile, |
8 | }; | 9 | }; |
10 | use ra_cfg::CfgOptions; | ||
9 | use ra_prof::profile; | 11 | use ra_prof::profile; |
10 | use ra_syntax::ast::{ | 12 | use ra_syntax::ast::{ |
11 | self, AstNode, ImplItem, ModuleItemOwner, NameOwner, TypeAscriptionOwner, VisibilityOwner, | 13 | self, AstNode, ImplItem, ModuleItemOwner, NameOwner, TypeAscriptionOwner, VisibilityOwner, |
12 | }; | 14 | }; |
13 | 15 | ||
14 | use crate::{ | 16 | use crate::{ |
17 | attr::Attrs, | ||
15 | db::DefDatabase, | 18 | db::DefDatabase, |
16 | path::{path, GenericArgs, Path}, | 19 | path::{path, GenericArgs, Path}, |
17 | src::HasSource, | 20 | src::HasSource, |
@@ -26,6 +29,7 @@ pub struct FunctionData { | |||
26 | pub name: Name, | 29 | pub name: Name, |
27 | pub params: Vec<TypeRef>, | 30 | pub params: Vec<TypeRef>, |
28 | pub ret_type: TypeRef, | 31 | pub ret_type: TypeRef, |
32 | pub attrs: Attrs, | ||
29 | /// True if the first param is `self`. This is relevant to decide whether this | 33 | /// True if the first param is `self`. This is relevant to decide whether this |
30 | /// can be called as a method. | 34 | /// can be called as a method. |
31 | pub has_self_param: bool, | 35 | pub has_self_param: bool, |
@@ -63,13 +67,15 @@ impl FunctionData { | |||
63 | params.push(type_ref); | 67 | params.push(type_ref); |
64 | } | 68 | } |
65 | } | 69 | } |
70 | let attrs = Attrs::new(&src.value, &Hygiene::new(db.upcast(), src.file_id)); | ||
71 | |||
66 | let ret_type = if let Some(type_ref) = src.value.ret_type().and_then(|rt| rt.type_ref()) { | 72 | let ret_type = if let Some(type_ref) = src.value.ret_type().and_then(|rt| rt.type_ref()) { |
67 | TypeRef::from_ast(type_ref) | 73 | TypeRef::from_ast(type_ref) |
68 | } else { | 74 | } else { |
69 | TypeRef::unit() | 75 | TypeRef::unit() |
70 | }; | 76 | }; |
71 | 77 | ||
72 | let ret_type = if src.value.is_async() { | 78 | let ret_type = if src.value.async_kw_token().is_some() { |
73 | let future_impl = desugar_future_path(ret_type); | 79 | let future_impl = desugar_future_path(ret_type); |
74 | let ty_bound = TypeBound::Path(future_impl); | 80 | let ty_bound = TypeBound::Path(future_impl); |
75 | TypeRef::ImplTrait(vec![ty_bound]) | 81 | TypeRef::ImplTrait(vec![ty_bound]) |
@@ -81,7 +87,7 @@ impl FunctionData { | |||
81 | let visibility = | 87 | let visibility = |
82 | RawVisibility::from_ast_with_default(db, vis_default, src.map(|s| s.visibility())); | 88 | RawVisibility::from_ast_with_default(db, vis_default, src.map(|s| s.visibility())); |
83 | 89 | ||
84 | let sig = FunctionData { name, params, ret_type, has_self_param, visibility }; | 90 | let sig = FunctionData { name, params, ret_type, has_self_param, visibility, attrs }; |
85 | Arc::new(sig) | 91 | Arc::new(sig) |
86 | } | 92 | } |
87 | } | 93 | } |
@@ -130,7 +136,7 @@ impl TraitData { | |||
130 | pub(crate) fn trait_data_query(db: &dyn DefDatabase, tr: TraitId) -> Arc<TraitData> { | 136 | pub(crate) fn trait_data_query(db: &dyn DefDatabase, tr: TraitId) -> Arc<TraitData> { |
131 | let src = tr.lookup(db).source(db); | 137 | let src = tr.lookup(db).source(db); |
132 | let name = src.value.name().map_or_else(Name::missing, |n| n.as_name()); | 138 | let name = src.value.name().map_or_else(Name::missing, |n| n.as_name()); |
133 | let auto = src.value.is_auto(); | 139 | let auto = src.value.auto_kw_token().is_some(); |
134 | let ast_id_map = db.ast_id_map(src.file_id); | 140 | let ast_id_map = db.ast_id_map(src.file_id); |
135 | 141 | ||
136 | let container = AssocContainerId::TraitId(tr); | 142 | let container = AssocContainerId::TraitId(tr); |
@@ -207,10 +213,11 @@ impl ImplData { | |||
207 | 213 | ||
208 | let target_trait = src.value.target_trait().map(TypeRef::from_ast); | 214 | let target_trait = src.value.target_trait().map(TypeRef::from_ast); |
209 | let target_type = TypeRef::from_ast_opt(src.value.target_type()); | 215 | let target_type = TypeRef::from_ast_opt(src.value.target_type()); |
210 | let is_negative = src.value.is_negative(); | 216 | let is_negative = src.value.excl_token().is_some(); |
211 | let module_id = impl_loc.container.module(db); | 217 | let module_id = impl_loc.container.module(db); |
212 | 218 | ||
213 | let mut items = Vec::new(); | 219 | let mut items = Vec::new(); |
220 | |||
214 | if let Some(item_list) = src.value.item_list() { | 221 | if let Some(item_list) = src.value.item_list() { |
215 | items.extend(collect_impl_items(db, item_list.impl_items(), src.file_id, id)); | 222 | items.extend(collect_impl_items(db, item_list.impl_items(), src.file_id, id)); |
216 | items.extend(collect_impl_items_in_macros( | 223 | items.extend(collect_impl_items_in_macros( |
@@ -311,6 +318,10 @@ fn collect_impl_items_in_macro( | |||
311 | } | 318 | } |
312 | } | 319 | } |
313 | 320 | ||
321 | fn is_cfg_enabled(cfg_options: &CfgOptions, attrs: &Attrs) -> bool { | ||
322 | attrs.by_key("cfg").tt_values().all(|tt| cfg_options.is_cfg_enabled(tt) != Some(false)) | ||
323 | } | ||
324 | |||
314 | fn collect_impl_items( | 325 | fn collect_impl_items( |
315 | db: &dyn DefDatabase, | 326 | db: &dyn DefDatabase, |
316 | impl_items: impl Iterator<Item = ImplItem>, | 327 | impl_items: impl Iterator<Item = ImplItem>, |
@@ -318,16 +329,26 @@ fn collect_impl_items( | |||
318 | id: ImplId, | 329 | id: ImplId, |
319 | ) -> Vec<AssocItemId> { | 330 | ) -> Vec<AssocItemId> { |
320 | let items = db.ast_id_map(file_id); | 331 | let items = db.ast_id_map(file_id); |
332 | let crate_graph = db.crate_graph(); | ||
333 | let module_id = id.lookup(db).container.module(db); | ||
321 | 334 | ||
322 | impl_items | 335 | impl_items |
323 | .map(|item_node| match item_node { | 336 | .filter_map(|item_node| match item_node { |
324 | ast::ImplItem::FnDef(it) => { | 337 | ast::ImplItem::FnDef(it) => { |
325 | let def = FunctionLoc { | 338 | let def = FunctionLoc { |
326 | container: AssocContainerId::ImplId(id), | 339 | container: AssocContainerId::ImplId(id), |
327 | ast_id: AstId::new(file_id, items.ast_id(&it)), | 340 | ast_id: AstId::new(file_id, items.ast_id(&it)), |
328 | } | 341 | } |
329 | .intern(db); | 342 | .intern(db); |
330 | def.into() | 343 | |
344 | if !is_cfg_enabled( | ||
345 | &crate_graph[module_id.krate].cfg_options, | ||
346 | &db.function_data(def).attrs, | ||
347 | ) { | ||
348 | None | ||
349 | } else { | ||
350 | Some(def.into()) | ||
351 | } | ||
331 | } | 352 | } |
332 | ast::ImplItem::ConstDef(it) => { | 353 | ast::ImplItem::ConstDef(it) => { |
333 | let def = ConstLoc { | 354 | let def = ConstLoc { |
@@ -335,7 +356,7 @@ fn collect_impl_items( | |||
335 | ast_id: AstId::new(file_id, items.ast_id(&it)), | 356 | ast_id: AstId::new(file_id, items.ast_id(&it)), |
336 | } | 357 | } |
337 | .intern(db); | 358 | .intern(db); |
338 | def.into() | 359 | Some(def.into()) |
339 | } | 360 | } |
340 | ast::ImplItem::TypeAliasDef(it) => { | 361 | ast::ImplItem::TypeAliasDef(it) => { |
341 | let def = TypeAliasLoc { | 362 | let def = TypeAliasLoc { |
@@ -343,7 +364,7 @@ fn collect_impl_items( | |||
343 | ast_id: AstId::new(file_id, items.ast_id(&it)), | 364 | ast_id: AstId::new(file_id, items.ast_id(&it)), |
344 | } | 365 | } |
345 | .intern(db); | 366 | .intern(db); |
346 | def.into() | 367 | Some(def.into()) |
347 | } | 368 | } |
348 | }) | 369 | }) |
349 | .collect() | 370 | .collect() |
diff --git a/crates/ra_hir_def/src/generics.rs b/crates/ra_hir_def/src/generics.rs index b687ce2b2..d850244c4 100644 --- a/crates/ra_hir_def/src/generics.rs +++ b/crates/ra_hir_def/src/generics.rs | |||
@@ -194,7 +194,7 @@ impl GenericParams { | |||
194 | } | 194 | } |
195 | 195 | ||
196 | fn add_where_predicate_from_bound(&mut self, bound: ast::TypeBound, type_ref: TypeRef) { | 196 | fn add_where_predicate_from_bound(&mut self, bound: ast::TypeBound, type_ref: TypeRef) { |
197 | if bound.has_question_mark() { | 197 | if bound.question_token().is_some() { |
198 | // FIXME: remove this bound | 198 | // FIXME: remove this bound |
199 | return; | 199 | return; |
200 | } | 200 | } |
diff --git a/crates/ra_hir_def/src/nameres/raw.rs b/crates/ra_hir_def/src/nameres/raw.rs index 8f190e7f9..e72ba52cf 100644 --- a/crates/ra_hir_def/src/nameres/raw.rs +++ b/crates/ra_hir_def/src/nameres/raw.rs | |||
@@ -266,6 +266,10 @@ impl RawItemsCollector { | |||
266 | self.add_macro(current_module, it); | 266 | self.add_macro(current_module, it); |
267 | return; | 267 | return; |
268 | } | 268 | } |
269 | ast::ModuleItem::ExternBlock(_) => { | ||
270 | // FIXME: add extern block | ||
271 | return; | ||
272 | } | ||
269 | }; | 273 | }; |
270 | if let Some(name) = name { | 274 | if let Some(name) = name { |
271 | let name = name.as_name(); | 275 | let name = name.as_name(); |
@@ -283,7 +287,7 @@ impl RawItemsCollector { | |||
283 | let visibility = RawVisibility::from_ast_with_hygiene(module.visibility(), &self.hygiene); | 287 | let visibility = RawVisibility::from_ast_with_hygiene(module.visibility(), &self.hygiene); |
284 | 288 | ||
285 | let ast_id = self.source_ast_id_map.ast_id(&module); | 289 | let ast_id = self.source_ast_id_map.ast_id(&module); |
286 | if module.has_semi() { | 290 | if module.semi_token().is_some() { |
287 | let item = | 291 | let item = |
288 | self.raw_items.modules.alloc(ModuleData::Declaration { name, visibility, ast_id }); | 292 | self.raw_items.modules.alloc(ModuleData::Declaration { name, visibility, ast_id }); |
289 | self.push_item(current_module, attrs, RawItemKind::Module(item)); | 293 | self.push_item(current_module, attrs, RawItemKind::Module(item)); |
diff --git a/crates/ra_hir_def/src/path/lower.rs b/crates/ra_hir_def/src/path/lower.rs index 4900000fe..0f806d6fb 100644 --- a/crates/ra_hir_def/src/path/lower.rs +++ b/crates/ra_hir_def/src/path/lower.rs | |||
@@ -28,7 +28,7 @@ pub(super) fn lower_path(mut path: ast::Path, hygiene: &Hygiene) -> Option<Path> | |||
28 | loop { | 28 | loop { |
29 | let segment = path.segment()?; | 29 | let segment = path.segment()?; |
30 | 30 | ||
31 | if segment.has_colon_colon() { | 31 | if segment.coloncolon_token().is_some() { |
32 | kind = PathKind::Abs; | 32 | kind = PathKind::Abs; |
33 | } | 33 | } |
34 | 34 | ||
diff --git a/crates/ra_hir_def/src/path/lower/lower_use.rs b/crates/ra_hir_def/src/path/lower/lower_use.rs index 278d5196e..5b6854b0f 100644 --- a/crates/ra_hir_def/src/path/lower/lower_use.rs +++ b/crates/ra_hir_def/src/path/lower/lower_use.rs | |||
@@ -34,7 +34,7 @@ pub(crate) fn lower_use_tree( | |||
34 | let alias = tree.alias().map(|a| { | 34 | let alias = tree.alias().map(|a| { |
35 | a.name().map(|it| it.as_name()).map_or(ImportAlias::Underscore, ImportAlias::Alias) | 35 | a.name().map(|it| it.as_name()).map_or(ImportAlias::Underscore, ImportAlias::Alias) |
36 | }); | 36 | }); |
37 | let is_glob = tree.has_star(); | 37 | let is_glob = tree.star_token().is_some(); |
38 | if let Some(ast_path) = tree.path() { | 38 | if let Some(ast_path) = tree.path() { |
39 | // Handle self in a path. | 39 | // Handle self in a path. |
40 | // E.g. `use something::{self, <...>}` | 40 | // E.g. `use something::{self, <...>}` |
diff --git a/crates/ra_hir_def/src/type_ref.rs b/crates/ra_hir_def/src/type_ref.rs index 01cc392db..7a8338937 100644 --- a/crates/ra_hir_def/src/type_ref.rs +++ b/crates/ra_hir_def/src/type_ref.rs | |||
@@ -77,7 +77,7 @@ impl TypeRef { | |||
77 | } | 77 | } |
78 | ast::TypeRef::PointerType(inner) => { | 78 | ast::TypeRef::PointerType(inner) => { |
79 | let inner_ty = TypeRef::from_ast_opt(inner.type_ref()); | 79 | let inner_ty = TypeRef::from_ast_opt(inner.type_ref()); |
80 | let mutability = Mutability::from_mutable(inner.is_mut()); | 80 | let mutability = Mutability::from_mutable(inner.mut_kw_token().is_some()); |
81 | TypeRef::RawPtr(Box::new(inner_ty), mutability) | 81 | TypeRef::RawPtr(Box::new(inner_ty), mutability) |
82 | } | 82 | } |
83 | ast::TypeRef::ArrayType(inner) => { | 83 | ast::TypeRef::ArrayType(inner) => { |
@@ -88,7 +88,7 @@ impl TypeRef { | |||
88 | } | 88 | } |
89 | ast::TypeRef::ReferenceType(inner) => { | 89 | ast::TypeRef::ReferenceType(inner) => { |
90 | let inner_ty = TypeRef::from_ast_opt(inner.type_ref()); | 90 | let inner_ty = TypeRef::from_ast_opt(inner.type_ref()); |
91 | let mutability = Mutability::from_mutable(inner.is_mut()); | 91 | let mutability = Mutability::from_mutable(inner.mut_kw_token().is_some()); |
92 | TypeRef::Reference(Box::new(inner_ty), mutability) | 92 | TypeRef::Reference(Box::new(inner_ty), mutability) |
93 | } | 93 | } |
94 | ast::TypeRef::PlaceholderType(_inner) => TypeRef::Placeholder, | 94 | ast::TypeRef::PlaceholderType(_inner) => TypeRef::Placeholder, |
diff --git a/crates/ra_hir_def/src/visibility.rs b/crates/ra_hir_def/src/visibility.rs index 62513873e..1482d3be0 100644 --- a/crates/ra_hir_def/src/visibility.rs +++ b/crates/ra_hir_def/src/visibility.rs | |||
@@ -84,6 +84,10 @@ impl RawVisibility { | |||
84 | let path = ModPath { kind: PathKind::Super(1), segments: Vec::new() }; | 84 | let path = ModPath { kind: PathKind::Super(1), segments: Vec::new() }; |
85 | RawVisibility::Module(path) | 85 | RawVisibility::Module(path) |
86 | } | 86 | } |
87 | ast::VisibilityKind::PubSelf => { | ||
88 | let path = ModPath { kind: PathKind::Plain, segments: Vec::new() }; | ||
89 | RawVisibility::Module(path) | ||
90 | } | ||
87 | ast::VisibilityKind::Pub => RawVisibility::Public, | 91 | ast::VisibilityKind::Pub => RawVisibility::Public, |
88 | } | 92 | } |
89 | } | 93 | } |
diff --git a/crates/ra_hir_expand/src/quote.rs b/crates/ra_hir_expand/src/quote.rs index 3fd4233da..219bc2097 100644 --- a/crates/ra_hir_expand/src/quote.rs +++ b/crates/ra_hir_expand/src/quote.rs | |||
@@ -232,7 +232,7 @@ mod tests { | |||
232 | let quoted = quote!(#a); | 232 | let quoted = quote!(#a); |
233 | assert_eq!(quoted.to_string(), "hello"); | 233 | assert_eq!(quoted.to_string(), "hello"); |
234 | let t = format!("{:?}", quoted); | 234 | let t = format!("{:?}", quoted); |
235 | assert_eq!(t, "Subtree { delimiter: None, token_trees: [Leaf(Ident(Ident { text: \"hello\", id: TokenId(4294967295) }))] }"); | 235 | assert_eq!(t, "SUBTREE $\n IDENT hello 4294967295"); |
236 | } | 236 | } |
237 | 237 | ||
238 | #[test] | 238 | #[test] |
diff --git a/crates/ra_hir_ty/src/expr.rs b/crates/ra_hir_ty/src/expr.rs index b4592fbf5..e45e9ea14 100644 --- a/crates/ra_hir_ty/src/expr.rs +++ b/crates/ra_hir_ty/src/expr.rs | |||
@@ -4,8 +4,7 @@ use std::sync::Arc; | |||
4 | 4 | ||
5 | use hir_def::{path::path, resolver::HasResolver, AdtId, FunctionId}; | 5 | use hir_def::{path::path, resolver::HasResolver, AdtId, FunctionId}; |
6 | use hir_expand::diagnostics::DiagnosticSink; | 6 | use hir_expand::diagnostics::DiagnosticSink; |
7 | use ra_syntax::ast; | 7 | use ra_syntax::{ast, AstPtr}; |
8 | use ra_syntax::AstPtr; | ||
9 | use rustc_hash::FxHashSet; | 8 | use rustc_hash::FxHashSet; |
10 | 9 | ||
11 | use crate::{ | 10 | use crate::{ |
diff --git a/crates/ra_hir_ty/src/tests.rs b/crates/ra_hir_ty/src/tests.rs index e4a103d1b..f97e0bfeb 100644 --- a/crates/ra_hir_ty/src/tests.rs +++ b/crates/ra_hir_ty/src/tests.rs | |||
@@ -23,7 +23,7 @@ use insta::assert_snapshot; | |||
23 | use ra_db::{fixture::WithFixture, salsa::Database, FilePosition, SourceDatabase}; | 23 | use ra_db::{fixture::WithFixture, salsa::Database, FilePosition, SourceDatabase}; |
24 | use ra_syntax::{ | 24 | use ra_syntax::{ |
25 | algo, | 25 | algo, |
26 | ast::{self, AstNode}, | 26 | ast::{self, AstNode, AstToken}, |
27 | }; | 27 | }; |
28 | use stdx::format_to; | 28 | use stdx::format_to; |
29 | 29 | ||
@@ -101,7 +101,7 @@ fn infer_with_mismatches(content: &str, include_mismatches: bool) -> String { | |||
101 | let node = src_ptr.value.to_node(&src_ptr.file_syntax(&db)); | 101 | let node = src_ptr.value.to_node(&src_ptr.file_syntax(&db)); |
102 | 102 | ||
103 | let (range, text) = if let Some(self_param) = ast::SelfParam::cast(node.clone()) { | 103 | let (range, text) = if let Some(self_param) = ast::SelfParam::cast(node.clone()) { |
104 | (self_param.self_kw_token().text_range(), "self".to_string()) | 104 | (self_param.self_kw_token().unwrap().syntax().text_range(), "self".to_string()) |
105 | } else { | 105 | } else { |
106 | (src_ptr.value.range(), node.text().to_string().replace("\n", " ")) | 106 | (src_ptr.value.range(), node.text().to_string().replace("\n", " ")) |
107 | }; | 107 | }; |
@@ -319,3 +319,33 @@ fn no_such_field_diagnostics() { | |||
319 | "### | 319 | "### |
320 | ); | 320 | ); |
321 | } | 321 | } |
322 | |||
323 | #[test] | ||
324 | fn no_such_field_with_feature_flag_diagnostics() { | ||
325 | let diagnostics = TestDB::with_files( | ||
326 | r#" | ||
327 | //- /lib.rs crate:foo cfg:feature=foo | ||
328 | struct MyStruct { | ||
329 | my_val: usize, | ||
330 | #[cfg(feature = "foo")] | ||
331 | bar: bool, | ||
332 | } | ||
333 | |||
334 | impl MyStruct { | ||
335 | #[cfg(feature = "foo")] | ||
336 | pub(crate) fn new(my_val: usize, bar: bool) -> Self { | ||
337 | Self { my_val, bar } | ||
338 | } | ||
339 | |||
340 | #[cfg(not(feature = "foo"))] | ||
341 | pub(crate) fn new(my_val: usize, _bar: bool) -> Self { | ||
342 | Self { my_val } | ||
343 | } | ||
344 | } | ||
345 | "#, | ||
346 | ) | ||
347 | .diagnostics() | ||
348 | .0; | ||
349 | |||
350 | assert_snapshot!(diagnostics, @r###""###); | ||
351 | } | ||
diff --git a/crates/ra_ide/src/completion/completion_context.rs b/crates/ra_ide/src/completion/completion_context.rs index f833d2a9a..0e34d85db 100644 --- a/crates/ra_ide/src/completion/completion_context.rs +++ b/crates/ra_ide/src/completion/completion_context.rs | |||
@@ -190,7 +190,10 @@ impl<'a> CompletionContext<'a> { | |||
190 | if let Some(name) = find_node_at_offset::<ast::Name>(&file_with_fake_ident, offset) { | 190 | if let Some(name) = find_node_at_offset::<ast::Name>(&file_with_fake_ident, offset) { |
191 | if let Some(bind_pat) = name.syntax().ancestors().find_map(ast::BindPat::cast) { | 191 | if let Some(bind_pat) = name.syntax().ancestors().find_map(ast::BindPat::cast) { |
192 | self.is_pat_binding_or_const = true; | 192 | self.is_pat_binding_or_const = true; |
193 | if bind_pat.has_at() || bind_pat.is_ref() || bind_pat.is_mutable() { | 193 | if bind_pat.at_token().is_some() |
194 | || bind_pat.ref_kw_token().is_some() | ||
195 | || bind_pat.mut_kw_token().is_some() | ||
196 | { | ||
194 | self.is_pat_binding_or_const = false; | 197 | self.is_pat_binding_or_const = false; |
195 | } | 198 | } |
196 | if bind_pat.syntax().parent().and_then(ast::RecordFieldPatList::cast).is_some() { | 199 | if bind_pat.syntax().parent().and_then(ast::RecordFieldPatList::cast).is_some() { |
diff --git a/crates/ra_ide/src/references.rs b/crates/ra_ide/src/references.rs index 746cc86ba..ad6fd50aa 100644 --- a/crates/ra_ide/src/references.rs +++ b/crates/ra_ide/src/references.rs | |||
@@ -152,7 +152,7 @@ fn decl_access(def: &Definition, syntax: &SyntaxNode, range: TextRange) -> Optio | |||
152 | if stmt.initializer().is_some() { | 152 | if stmt.initializer().is_some() { |
153 | let pat = stmt.pat()?; | 153 | let pat = stmt.pat()?; |
154 | if let ast::Pat::BindPat(it) = pat { | 154 | if let ast::Pat::BindPat(it) = pat { |
155 | if it.is_mutable() { | 155 | if it.mut_kw_token().is_some() { |
156 | return Some(ReferenceAccess::Write); | 156 | return Some(ReferenceAccess::Write); |
157 | } | 157 | } |
158 | } | 158 | } |
diff --git a/crates/ra_ide/src/typing.rs b/crates/ra_ide/src/typing.rs index cb2cd2479..71d2bcb04 100644 --- a/crates/ra_ide/src/typing.rs +++ b/crates/ra_ide/src/typing.rs | |||
@@ -63,7 +63,7 @@ fn on_char_typed_inner( | |||
63 | fn on_eq_typed(file: &SourceFile, offset: TextUnit) -> Option<SingleFileChange> { | 63 | fn on_eq_typed(file: &SourceFile, offset: TextUnit) -> Option<SingleFileChange> { |
64 | assert_eq!(file.syntax().text().char_at(offset), Some('=')); | 64 | assert_eq!(file.syntax().text().char_at(offset), Some('=')); |
65 | let let_stmt: ast::LetStmt = find_node_at_offset(file.syntax(), offset)?; | 65 | let let_stmt: ast::LetStmt = find_node_at_offset(file.syntax(), offset)?; |
66 | if let_stmt.has_semi() { | 66 | if let_stmt.semi_token().is_some() { |
67 | return None; | 67 | return None; |
68 | } | 68 | } |
69 | if let Some(expr) = let_stmt.initializer() { | 69 | if let Some(expr) = let_stmt.initializer() { |
diff --git a/crates/ra_mbe/src/tests.rs b/crates/ra_mbe/src/tests.rs index 254318e23..1ef6f6eed 100644 --- a/crates/ra_mbe/src/tests.rs +++ b/crates/ra_mbe/src/tests.rs | |||
@@ -142,6 +142,79 @@ macro_rules! impl_froms { | |||
142 | } | 142 | } |
143 | 143 | ||
144 | #[test] | 144 | #[test] |
145 | fn test_convert_tt2() { | ||
146 | parse_macro( | ||
147 | r#" | ||
148 | macro_rules! impl_froms { | ||
149 | ($e:ident: $($v:ident),*) => { | ||
150 | $( | ||
151 | impl From<$v> for $e { | ||
152 | fn from(it: $v) -> $e { | ||
153 | $e::$v(it) | ||
154 | } | ||
155 | } | ||
156 | )* | ||
157 | } | ||
158 | } | ||
159 | "#, | ||
160 | ) | ||
161 | .assert_expand( | ||
162 | "impl_froms!(TokenTree: Leaf, Subtree);", | ||
163 | r#" | ||
164 | SUBTREE $ | ||
165 | IDENT impl 20 | ||
166 | IDENT From 21 | ||
167 | PUNCH < [joint] 22 | ||
168 | IDENT Leaf 53 | ||
169 | PUNCH > [alone] 25 | ||
170 | IDENT for 26 | ||
171 | IDENT TokenTree 51 | ||
172 | SUBTREE {} 29 | ||
173 | IDENT fn 30 | ||
174 | IDENT from 31 | ||
175 | SUBTREE () 32 | ||
176 | IDENT it 33 | ||
177 | PUNCH : [alone] 34 | ||
178 | IDENT Leaf 53 | ||
179 | PUNCH - [joint] 37 | ||
180 | PUNCH > [alone] 38 | ||
181 | IDENT TokenTree 51 | ||
182 | SUBTREE {} 41 | ||
183 | IDENT TokenTree 51 | ||
184 | PUNCH : [joint] 44 | ||
185 | PUNCH : [joint] 45 | ||
186 | IDENT Leaf 53 | ||
187 | SUBTREE () 48 | ||
188 | IDENT it 49 | ||
189 | IDENT impl 20 | ||
190 | IDENT From 21 | ||
191 | PUNCH < [joint] 22 | ||
192 | IDENT Subtree 55 | ||
193 | PUNCH > [alone] 25 | ||
194 | IDENT for 26 | ||
195 | IDENT TokenTree 51 | ||
196 | SUBTREE {} 29 | ||
197 | IDENT fn 30 | ||
198 | IDENT from 31 | ||
199 | SUBTREE () 32 | ||
200 | IDENT it 33 | ||
201 | PUNCH : [alone] 34 | ||
202 | IDENT Subtree 55 | ||
203 | PUNCH - [joint] 37 | ||
204 | PUNCH > [alone] 38 | ||
205 | IDENT TokenTree 51 | ||
206 | SUBTREE {} 41 | ||
207 | IDENT TokenTree 51 | ||
208 | PUNCH : [joint] 44 | ||
209 | PUNCH : [joint] 45 | ||
210 | IDENT Subtree 55 | ||
211 | SUBTREE () 48 | ||
212 | IDENT it 49 | ||
213 | "#, | ||
214 | ); | ||
215 | } | ||
216 | |||
217 | #[test] | ||
145 | fn test_expr_order() { | 218 | fn test_expr_order() { |
146 | let expanded = parse_macro( | 219 | let expanded = parse_macro( |
147 | r#" | 220 | r#" |
@@ -1479,6 +1552,12 @@ impl MacroFixture { | |||
1479 | assert_eq!(expansion.to_string(), expected); | 1552 | assert_eq!(expansion.to_string(), expected); |
1480 | } | 1553 | } |
1481 | 1554 | ||
1555 | fn assert_expand(&self, invocation: &str, expected: &str) { | ||
1556 | let expansion = self.expand_tt(invocation); | ||
1557 | let actual = format!("{:?}", expansion); | ||
1558 | test_utils::assert_eq_text!(&actual.trim(), &expected.trim()); | ||
1559 | } | ||
1560 | |||
1482 | fn assert_expand_items(&self, invocation: &str, expected: &str) -> &MacroFixture { | 1561 | fn assert_expand_items(&self, invocation: &str, expected: &str) -> &MacroFixture { |
1483 | self.assert_expansion(FragmentKind::Items, invocation, expected); | 1562 | self.assert_expansion(FragmentKind::Items, invocation, expected); |
1484 | self | 1563 | self |
diff --git a/crates/ra_parser/src/grammar.rs b/crates/ra_parser/src/grammar.rs index 58098e810..d0530955e 100644 --- a/crates/ra_parser/src/grammar.rs +++ b/crates/ra_parser/src/grammar.rs | |||
@@ -245,7 +245,7 @@ fn opt_fn_ret_type(p: &mut Parser) -> bool { | |||
245 | if p.at(T![->]) { | 245 | if p.at(T![->]) { |
246 | let m = p.start(); | 246 | let m = p.start(); |
247 | p.bump(T![->]); | 247 | p.bump(T![->]); |
248 | types::type_(p); | 248 | types::type_no_bounds(p); |
249 | m.complete(p, RET_TYPE); | 249 | m.complete(p, RET_TYPE); |
250 | true | 250 | true |
251 | } else { | 251 | } else { |
diff --git a/crates/ra_parser/src/syntax_kind/generated.rs b/crates/ra_parser/src/syntax_kind/generated.rs index 4c16cf1cd..004f4e564 100644 --- a/crates/ra_parser/src/syntax_kind/generated.rs +++ b/crates/ra_parser/src/syntax_kind/generated.rs | |||
@@ -105,6 +105,7 @@ pub enum SyntaxKind { | |||
105 | DEFAULT_KW, | 105 | DEFAULT_KW, |
106 | EXISTENTIAL_KW, | 106 | EXISTENTIAL_KW, |
107 | UNION_KW, | 107 | UNION_KW, |
108 | RAW_KW, | ||
108 | INT_NUMBER, | 109 | INT_NUMBER, |
109 | FLOAT_NUMBER, | 110 | FLOAT_NUMBER, |
110 | CHAR, | 111 | CHAR, |
@@ -258,7 +259,7 @@ impl SyntaxKind { | |||
258 | | IMPL_KW | IN_KW | LET_KW | LOOP_KW | MACRO_KW | MATCH_KW | MOD_KW | MOVE_KW | 259 | | IMPL_KW | IN_KW | LET_KW | LOOP_KW | MACRO_KW | MATCH_KW | MOD_KW | MOVE_KW |
259 | | MUT_KW | PUB_KW | REF_KW | RETURN_KW | SELF_KW | STATIC_KW | STRUCT_KW | SUPER_KW | 260 | | MUT_KW | PUB_KW | REF_KW | RETURN_KW | SELF_KW | STATIC_KW | STRUCT_KW | SUPER_KW |
260 | | TRAIT_KW | TRUE_KW | TRY_KW | TYPE_KW | UNSAFE_KW | USE_KW | WHERE_KW | WHILE_KW | 261 | | TRAIT_KW | TRUE_KW | TRY_KW | TYPE_KW | UNSAFE_KW | USE_KW | WHERE_KW | WHILE_KW |
261 | | AUTO_KW | DEFAULT_KW | EXISTENTIAL_KW | UNION_KW => true, | 262 | | AUTO_KW | DEFAULT_KW | EXISTENTIAL_KW | UNION_KW | RAW_KW => true, |
262 | _ => false, | 263 | _ => false, |
263 | } | 264 | } |
264 | } | 265 | } |
@@ -651,4 +652,7 @@ macro_rules! T { | |||
651 | ( union ) => { | 652 | ( union ) => { |
652 | $crate::SyntaxKind::UNION_KW | 653 | $crate::SyntaxKind::UNION_KW |
653 | }; | 654 | }; |
655 | ( raw ) => { | ||
656 | $crate::SyntaxKind::RAW_KW | ||
657 | }; | ||
654 | } | 658 | } |
diff --git a/crates/ra_proc_macro_srv/Cargo.toml b/crates/ra_proc_macro_srv/Cargo.toml index 6300d668a..f08de5fc7 100644 --- a/crates/ra_proc_macro_srv/Cargo.toml +++ b/crates/ra_proc_macro_srv/Cargo.toml | |||
@@ -10,9 +10,9 @@ doctest = false | |||
10 | 10 | ||
11 | [dependencies] | 11 | [dependencies] |
12 | ra_tt = { path = "../ra_tt" } | 12 | ra_tt = { path = "../ra_tt" } |
13 | ra_mbe = { path = "../ra_mbe" } | ||
13 | ra_proc_macro = { path = "../ra_proc_macro" } | 14 | ra_proc_macro = { path = "../ra_proc_macro" } |
14 | 15 | ||
15 | |||
16 | [dev-dependencies] | 16 | [dev-dependencies] |
17 | cargo_metadata = "0.9.1" | 17 | cargo_metadata = "0.9.1" |
18 | difference = "2.0.0" | 18 | difference = "2.0.0" |
diff --git a/crates/ra_proc_macro_srv/src/lib.rs b/crates/ra_proc_macro_srv/src/lib.rs index 80cfa1174..f376df236 100644 --- a/crates/ra_proc_macro_srv/src/lib.rs +++ b/crates/ra_proc_macro_srv/src/lib.rs | |||
@@ -14,6 +14,9 @@ | |||
14 | #[doc(hidden)] | 14 | #[doc(hidden)] |
15 | mod proc_macro; | 15 | mod proc_macro; |
16 | 16 | ||
17 | #[doc(hidden)] | ||
18 | mod rustc_server; | ||
19 | |||
17 | use proc_macro::bridge::client::TokenStream; | 20 | use proc_macro::bridge::client::TokenStream; |
18 | use ra_proc_macro::{ExpansionResult, ExpansionTask, ListMacrosResult, ListMacrosTask}; | 21 | use ra_proc_macro::{ExpansionResult, ExpansionTask, ListMacrosResult, ListMacrosTask}; |
19 | 22 | ||
diff --git a/crates/ra_proc_macro_srv/src/rustc_server.rs b/crates/ra_proc_macro_srv/src/rustc_server.rs new file mode 100644 index 000000000..92d1fd989 --- /dev/null +++ b/crates/ra_proc_macro_srv/src/rustc_server.rs | |||
@@ -0,0 +1,684 @@ | |||
1 | //! Rustc proc-macro server implementation with ra_tt | ||
2 | //! | ||
3 | //! Based on idea from https://github.com/fedochet/rust-proc-macro-expander | ||
4 | //! The lib-proc-macro server backend is `TokenStream`-agnostic, such that | ||
5 | //! we could provide any TokenStream implementation. | ||
6 | //! The original idea from fedochet is using proc-macro2 as backend, | ||
7 | //! we use ra_tt instead for better intergation with RA. | ||
8 | //! | ||
9 | //! FIXME: No span and source file informatin is implemented yet | ||
10 | |||
11 | use crate::proc_macro::bridge::{self, server}; | ||
12 | use ra_tt as tt; | ||
13 | |||
14 | use std::collections::{Bound, HashMap}; | ||
15 | use std::hash::Hash; | ||
16 | use std::iter::FromIterator; | ||
17 | use std::str::FromStr; | ||
18 | use std::{ascii, vec::IntoIter}; | ||
19 | |||
20 | type Group = tt::Subtree; | ||
21 | type TokenTree = tt::TokenTree; | ||
22 | type Punct = tt::Punct; | ||
23 | type Spacing = tt::Spacing; | ||
24 | type Literal = tt::Literal; | ||
25 | type Span = tt::TokenId; | ||
26 | |||
27 | #[derive(Debug, Clone)] | ||
28 | pub struct TokenStream { | ||
29 | pub subtree: tt::Subtree, | ||
30 | } | ||
31 | |||
32 | impl TokenStream { | ||
33 | pub fn new() -> Self { | ||
34 | TokenStream { subtree: Default::default() } | ||
35 | } | ||
36 | |||
37 | pub fn is_empty(&self) -> bool { | ||
38 | self.subtree.token_trees.is_empty() | ||
39 | } | ||
40 | } | ||
41 | |||
42 | /// Creates a token stream containing a single token tree. | ||
43 | impl From<TokenTree> for TokenStream { | ||
44 | fn from(tree: TokenTree) -> TokenStream { | ||
45 | TokenStream { subtree: tt::Subtree { delimiter: None, token_trees: vec![tree] } } | ||
46 | } | ||
47 | } | ||
48 | |||
49 | /// Collects a number of token trees into a single stream. | ||
50 | impl FromIterator<TokenTree> for TokenStream { | ||
51 | fn from_iter<I: IntoIterator<Item = TokenTree>>(trees: I) -> Self { | ||
52 | trees.into_iter().map(TokenStream::from).collect() | ||
53 | } | ||
54 | } | ||
55 | |||
56 | /// A "flattening" operation on token streams, collects token trees | ||
57 | /// from multiple token streams into a single stream. | ||
58 | impl FromIterator<TokenStream> for TokenStream { | ||
59 | fn from_iter<I: IntoIterator<Item = TokenStream>>(streams: I) -> Self { | ||
60 | let mut builder = TokenStreamBuilder::new(); | ||
61 | streams.into_iter().for_each(|stream| builder.push(stream)); | ||
62 | builder.build() | ||
63 | } | ||
64 | } | ||
65 | |||
66 | impl Extend<TokenTree> for TokenStream { | ||
67 | fn extend<I: IntoIterator<Item = TokenTree>>(&mut self, trees: I) { | ||
68 | self.extend(trees.into_iter().map(TokenStream::from)); | ||
69 | } | ||
70 | } | ||
71 | |||
72 | impl Extend<TokenStream> for TokenStream { | ||
73 | fn extend<I: IntoIterator<Item = TokenStream>>(&mut self, streams: I) { | ||
74 | for item in streams { | ||
75 | self.subtree.token_trees.extend(&mut item.into_iter()) | ||
76 | } | ||
77 | } | ||
78 | } | ||
79 | |||
80 | type Level = crate::proc_macro::Level; | ||
81 | type LineColumn = crate::proc_macro::LineColumn; | ||
82 | type SourceFile = crate::proc_macro::SourceFile; | ||
83 | |||
84 | /// A structure representing a diagnostic message and associated children | ||
85 | /// messages. | ||
86 | #[derive(Clone, Debug)] | ||
87 | pub struct Diagnostic { | ||
88 | level: Level, | ||
89 | message: String, | ||
90 | spans: Vec<Span>, | ||
91 | children: Vec<Diagnostic>, | ||
92 | } | ||
93 | |||
94 | impl Diagnostic { | ||
95 | /// Creates a new diagnostic with the given `level` and `message`. | ||
96 | pub fn new<T: Into<String>>(level: Level, message: T) -> Diagnostic { | ||
97 | Diagnostic { level, message: message.into(), spans: vec![], children: vec![] } | ||
98 | } | ||
99 | } | ||
100 | |||
101 | // Rustc Server Ident has to be `Copyable` | ||
102 | // We use a stub here for bypassing | ||
103 | #[derive(Hash, Eq, PartialEq, Copy, Clone)] | ||
104 | pub struct IdentId(u32); | ||
105 | |||
106 | #[derive(Clone, Hash, Eq, PartialEq)] | ||
107 | struct IdentData(tt::Ident); | ||
108 | |||
109 | #[derive(Default)] | ||
110 | struct IdentInterner { | ||
111 | idents: HashMap<IdentData, u32>, | ||
112 | ident_data: Vec<IdentData>, | ||
113 | } | ||
114 | |||
115 | impl IdentInterner { | ||
116 | fn intern(&mut self, data: &IdentData) -> u32 { | ||
117 | if let Some(index) = self.idents.get(data) { | ||
118 | return *index; | ||
119 | } | ||
120 | |||
121 | let index = self.idents.len() as u32; | ||
122 | self.ident_data.push(data.clone()); | ||
123 | self.idents.insert(data.clone(), index); | ||
124 | index | ||
125 | } | ||
126 | |||
127 | fn get(&self, index: u32) -> &IdentData { | ||
128 | &self.ident_data[index as usize] | ||
129 | } | ||
130 | |||
131 | #[allow(unused)] | ||
132 | fn get_mut(&mut self, index: u32) -> &mut IdentData { | ||
133 | self.ident_data.get_mut(index as usize).expect("Should be consistent") | ||
134 | } | ||
135 | } | ||
136 | |||
137 | pub struct TokenStreamBuilder { | ||
138 | acc: TokenStream, | ||
139 | } | ||
140 | |||
141 | /// Public implementation details for the `TokenStream` type, such as iterators. | ||
142 | pub mod token_stream { | ||
143 | use super::{tt, TokenStream, TokenTree}; | ||
144 | use std::str::FromStr; | ||
145 | |||
146 | /// An iterator over `TokenStream`'s `TokenTree`s. | ||
147 | /// The iteration is "shallow", e.g., the iterator doesn't recurse into delimited groups, | ||
148 | /// and returns whole groups as token trees. | ||
149 | impl IntoIterator for TokenStream { | ||
150 | type Item = TokenTree; | ||
151 | type IntoIter = super::IntoIter<TokenTree>; | ||
152 | |||
153 | fn into_iter(self) -> Self::IntoIter { | ||
154 | self.subtree.token_trees.into_iter() | ||
155 | } | ||
156 | } | ||
157 | |||
158 | type LexError = String; | ||
159 | |||
160 | /// Attempts to break the string into tokens and parse those tokens into a token stream. | ||
161 | /// May fail for a number of reasons, for example, if the string contains unbalanced delimiters | ||
162 | /// or characters not existing in the language. | ||
163 | /// All tokens in the parsed stream get `Span::call_site()` spans. | ||
164 | /// | ||
165 | /// NOTE: some errors may cause panics instead of returning `LexError`. We reserve the right to | ||
166 | /// change these errors into `LexError`s later. | ||
167 | impl FromStr for TokenStream { | ||
168 | type Err = LexError; | ||
169 | |||
170 | fn from_str(src: &str) -> Result<TokenStream, LexError> { | ||
171 | let (subtree, _token_map) = | ||
172 | ra_mbe::parse_to_token_tree(src).ok_or("Failed to parse from mbe")?; | ||
173 | |||
174 | let tt: tt::TokenTree = subtree.into(); | ||
175 | Ok(tt.into()) | ||
176 | } | ||
177 | } | ||
178 | |||
179 | impl ToString for TokenStream { | ||
180 | fn to_string(&self) -> String { | ||
181 | let tt = self.subtree.clone().into(); | ||
182 | to_text(&tt) | ||
183 | } | ||
184 | } | ||
185 | |||
186 | fn to_text(tkn: &tt::TokenTree) -> String { | ||
187 | match tkn { | ||
188 | tt::TokenTree::Leaf(tt::Leaf::Ident(ident)) => ident.text.clone().into(), | ||
189 | tt::TokenTree::Leaf(tt::Leaf::Literal(literal)) => literal.text.clone().into(), | ||
190 | tt::TokenTree::Leaf(tt::Leaf::Punct(punct)) => format!("{}", punct.char), | ||
191 | tt::TokenTree::Subtree(subtree) => { | ||
192 | let content = subtree | ||
193 | .token_trees | ||
194 | .iter() | ||
195 | .map(|tkn| { | ||
196 | let s = to_text(tkn); | ||
197 | if let tt::TokenTree::Leaf(tt::Leaf::Punct(punct)) = tkn { | ||
198 | if punct.spacing == tt::Spacing::Alone { | ||
199 | return s + " "; | ||
200 | } | ||
201 | } | ||
202 | s | ||
203 | }) | ||
204 | .collect::<Vec<_>>() | ||
205 | .concat(); | ||
206 | let (open, close) = match subtree.delimiter.map(|it| it.kind) { | ||
207 | None => ("", ""), | ||
208 | Some(tt::DelimiterKind::Brace) => ("{", "}"), | ||
209 | Some(tt::DelimiterKind::Parenthesis) => ("(", ")"), | ||
210 | Some(tt::DelimiterKind::Bracket) => ("[", "]"), | ||
211 | }; | ||
212 | format!("{}{}{}", open, content, close) | ||
213 | } | ||
214 | } | ||
215 | } | ||
216 | } | ||
217 | |||
218 | impl TokenStreamBuilder { | ||
219 | fn new() -> TokenStreamBuilder { | ||
220 | TokenStreamBuilder { acc: TokenStream::new() } | ||
221 | } | ||
222 | |||
223 | fn push(&mut self, stream: TokenStream) { | ||
224 | self.acc.extend(stream.into_iter()) | ||
225 | } | ||
226 | |||
227 | fn build(self) -> TokenStream { | ||
228 | self.acc | ||
229 | } | ||
230 | } | ||
231 | |||
232 | #[derive(Clone)] | ||
233 | pub struct TokenStreamIter { | ||
234 | trees: IntoIter<TokenTree>, | ||
235 | } | ||
236 | |||
237 | #[derive(Default)] | ||
238 | pub struct Rustc { | ||
239 | ident_interner: IdentInterner, | ||
240 | // FIXME: store span information here. | ||
241 | } | ||
242 | |||
243 | impl server::Types for Rustc { | ||
244 | type TokenStream = TokenStream; | ||
245 | type TokenStreamBuilder = TokenStreamBuilder; | ||
246 | type TokenStreamIter = TokenStreamIter; | ||
247 | type Group = Group; | ||
248 | type Punct = Punct; | ||
249 | type Ident = IdentId; | ||
250 | type Literal = Literal; | ||
251 | type SourceFile = SourceFile; | ||
252 | type Diagnostic = Diagnostic; | ||
253 | type Span = Span; | ||
254 | type MultiSpan = Vec<Span>; | ||
255 | } | ||
256 | |||
257 | impl server::TokenStream for Rustc { | ||
258 | fn new(&mut self) -> Self::TokenStream { | ||
259 | Self::TokenStream::new() | ||
260 | } | ||
261 | |||
262 | fn is_empty(&mut self, stream: &Self::TokenStream) -> bool { | ||
263 | stream.is_empty() | ||
264 | } | ||
265 | fn from_str(&mut self, src: &str) -> Self::TokenStream { | ||
266 | Self::TokenStream::from_str(src).expect("cannot parse string") | ||
267 | } | ||
268 | fn to_string(&mut self, stream: &Self::TokenStream) -> String { | ||
269 | stream.to_string() | ||
270 | } | ||
271 | fn from_token_tree( | ||
272 | &mut self, | ||
273 | tree: bridge::TokenTree<Self::Group, Self::Punct, Self::Ident, Self::Literal>, | ||
274 | ) -> Self::TokenStream { | ||
275 | match tree { | ||
276 | bridge::TokenTree::Group(group) => { | ||
277 | let tree = TokenTree::from(group); | ||
278 | Self::TokenStream::from_iter(vec![tree]) | ||
279 | } | ||
280 | |||
281 | bridge::TokenTree::Ident(IdentId(index)) => { | ||
282 | let IdentData(ident) = self.ident_interner.get(index).clone(); | ||
283 | let ident: tt::Ident = ident; | ||
284 | let leaf = tt::Leaf::from(ident); | ||
285 | let tree = TokenTree::from(leaf); | ||
286 | Self::TokenStream::from_iter(vec![tree]) | ||
287 | } | ||
288 | |||
289 | bridge::TokenTree::Literal(literal) => { | ||
290 | let leaf = tt::Leaf::from(literal); | ||
291 | let tree = TokenTree::from(leaf); | ||
292 | Self::TokenStream::from_iter(vec![tree]) | ||
293 | } | ||
294 | |||
295 | bridge::TokenTree::Punct(p) => { | ||
296 | let leaf = tt::Leaf::from(p); | ||
297 | let tree = TokenTree::from(leaf); | ||
298 | Self::TokenStream::from_iter(vec![tree]) | ||
299 | } | ||
300 | } | ||
301 | } | ||
302 | |||
303 | fn into_iter(&mut self, stream: Self::TokenStream) -> Self::TokenStreamIter { | ||
304 | let trees: Vec<TokenTree> = stream.into_iter().collect(); | ||
305 | TokenStreamIter { trees: trees.into_iter() } | ||
306 | } | ||
307 | } | ||
308 | |||
309 | impl server::TokenStreamBuilder for Rustc { | ||
310 | fn new(&mut self) -> Self::TokenStreamBuilder { | ||
311 | Self::TokenStreamBuilder::new() | ||
312 | } | ||
313 | fn push(&mut self, builder: &mut Self::TokenStreamBuilder, stream: Self::TokenStream) { | ||
314 | builder.push(stream) | ||
315 | } | ||
316 | fn build(&mut self, builder: Self::TokenStreamBuilder) -> Self::TokenStream { | ||
317 | builder.build() | ||
318 | } | ||
319 | } | ||
320 | |||
321 | impl server::TokenStreamIter for Rustc { | ||
322 | fn next( | ||
323 | &mut self, | ||
324 | iter: &mut Self::TokenStreamIter, | ||
325 | ) -> Option<bridge::TokenTree<Self::Group, Self::Punct, Self::Ident, Self::Literal>> { | ||
326 | iter.trees.next().map(|tree| match tree { | ||
327 | TokenTree::Subtree(group) => bridge::TokenTree::Group(group), | ||
328 | TokenTree::Leaf(tt::Leaf::Ident(ident)) => { | ||
329 | bridge::TokenTree::Ident(IdentId(self.ident_interner.intern(&IdentData(ident)))) | ||
330 | } | ||
331 | TokenTree::Leaf(tt::Leaf::Literal(literal)) => bridge::TokenTree::Literal(literal), | ||
332 | TokenTree::Leaf(tt::Leaf::Punct(punct)) => bridge::TokenTree::Punct(punct), | ||
333 | }) | ||
334 | } | ||
335 | } | ||
336 | |||
337 | fn delim_to_internal(d: bridge::Delimiter) -> Option<tt::Delimiter> { | ||
338 | let kind = match d { | ||
339 | bridge::Delimiter::Parenthesis => tt::DelimiterKind::Parenthesis, | ||
340 | bridge::Delimiter::Brace => tt::DelimiterKind::Brace, | ||
341 | bridge::Delimiter::Bracket => tt::DelimiterKind::Bracket, | ||
342 | bridge::Delimiter::None => return None, | ||
343 | }; | ||
344 | Some(tt::Delimiter { id: tt::TokenId::unspecified(), kind }) | ||
345 | } | ||
346 | |||
347 | fn delim_to_external(d: Option<tt::Delimiter>) -> bridge::Delimiter { | ||
348 | match d.map(|it| it.kind) { | ||
349 | Some(tt::DelimiterKind::Parenthesis) => bridge::Delimiter::Parenthesis, | ||
350 | Some(tt::DelimiterKind::Brace) => bridge::Delimiter::Brace, | ||
351 | Some(tt::DelimiterKind::Bracket) => bridge::Delimiter::Bracket, | ||
352 | None => bridge::Delimiter::None, | ||
353 | } | ||
354 | } | ||
355 | |||
356 | fn spacing_to_internal(spacing: bridge::Spacing) -> Spacing { | ||
357 | match spacing { | ||
358 | bridge::Spacing::Alone => Spacing::Alone, | ||
359 | bridge::Spacing::Joint => Spacing::Joint, | ||
360 | } | ||
361 | } | ||
362 | |||
363 | fn spacing_to_external(spacing: Spacing) -> bridge::Spacing { | ||
364 | match spacing { | ||
365 | Spacing::Alone => bridge::Spacing::Alone, | ||
366 | Spacing::Joint => bridge::Spacing::Joint, | ||
367 | } | ||
368 | } | ||
369 | |||
370 | impl server::Group for Rustc { | ||
371 | fn new(&mut self, delimiter: bridge::Delimiter, stream: Self::TokenStream) -> Self::Group { | ||
372 | Self::Group { | ||
373 | delimiter: delim_to_internal(delimiter), | ||
374 | token_trees: stream.subtree.token_trees, | ||
375 | } | ||
376 | } | ||
377 | fn delimiter(&mut self, group: &Self::Group) -> bridge::Delimiter { | ||
378 | delim_to_external(group.delimiter) | ||
379 | } | ||
380 | |||
381 | // NOTE: Return value of do not include delimiter | ||
382 | fn stream(&mut self, group: &Self::Group) -> Self::TokenStream { | ||
383 | TokenStream { | ||
384 | subtree: tt::Subtree { delimiter: None, token_trees: group.token_trees.clone() }, | ||
385 | } | ||
386 | } | ||
387 | |||
388 | fn span(&mut self, group: &Self::Group) -> Self::Span { | ||
389 | group.delimiter.map(|it| it.id).unwrap_or_else(|| tt::TokenId::unspecified()) | ||
390 | } | ||
391 | |||
392 | fn set_span(&mut self, _group: &mut Self::Group, _span: Self::Span) { | ||
393 | // FIXME handle span | ||
394 | } | ||
395 | |||
396 | fn span_open(&mut self, _group: &Self::Group) -> Self::Span { | ||
397 | // FIXME handle span | ||
398 | // MySpan(self.span_interner.intern(&MySpanData(group.span_open()))) | ||
399 | tt::TokenId::unspecified() | ||
400 | } | ||
401 | |||
402 | fn span_close(&mut self, _group: &Self::Group) -> Self::Span { | ||
403 | // FIXME handle span | ||
404 | tt::TokenId::unspecified() | ||
405 | } | ||
406 | } | ||
407 | |||
408 | impl server::Punct for Rustc { | ||
409 | fn new(&mut self, ch: char, spacing: bridge::Spacing) -> Self::Punct { | ||
410 | tt::Punct { | ||
411 | char: ch, | ||
412 | spacing: spacing_to_internal(spacing), | ||
413 | id: tt::TokenId::unspecified(), | ||
414 | } | ||
415 | } | ||
416 | fn as_char(&mut self, punct: Self::Punct) -> char { | ||
417 | punct.char | ||
418 | } | ||
419 | fn spacing(&mut self, punct: Self::Punct) -> bridge::Spacing { | ||
420 | spacing_to_external(punct.spacing) | ||
421 | } | ||
422 | fn span(&mut self, _punct: Self::Punct) -> Self::Span { | ||
423 | // FIXME handle span | ||
424 | tt::TokenId::unspecified() | ||
425 | } | ||
426 | fn with_span(&mut self, punct: Self::Punct, _span: Self::Span) -> Self::Punct { | ||
427 | // FIXME handle span | ||
428 | punct | ||
429 | } | ||
430 | } | ||
431 | |||
432 | impl server::Ident for Rustc { | ||
433 | fn new(&mut self, string: &str, _span: Self::Span, _is_raw: bool) -> Self::Ident { | ||
434 | IdentId( | ||
435 | self.ident_interner.intern(&IdentData(tt::Ident { | ||
436 | text: string.into(), | ||
437 | id: tt::TokenId::unspecified(), | ||
438 | })), | ||
439 | ) | ||
440 | } | ||
441 | |||
442 | fn span(&mut self, _ident: Self::Ident) -> Self::Span { | ||
443 | // FIXME handle span | ||
444 | tt::TokenId::unspecified() | ||
445 | } | ||
446 | fn with_span(&mut self, ident: Self::Ident, _span: Self::Span) -> Self::Ident { | ||
447 | // FIXME handle span | ||
448 | ident | ||
449 | } | ||
450 | } | ||
451 | |||
452 | impl server::Literal for Rustc { | ||
453 | // FIXME(eddyb) `Literal` should not expose internal `Debug` impls. | ||
454 | fn debug(&mut self, literal: &Self::Literal) -> String { | ||
455 | format!("{:?}", literal) | ||
456 | } | ||
457 | |||
458 | fn integer(&mut self, n: &str) -> Self::Literal { | ||
459 | let n: i128 = n.parse().unwrap(); | ||
460 | Literal { text: n.to_string().into(), id: tt::TokenId::unspecified() } | ||
461 | } | ||
462 | |||
463 | fn typed_integer(&mut self, n: &str, kind: &str) -> Self::Literal { | ||
464 | macro_rules! def_suffixed_integer { | ||
465 | ($kind:ident, $($ty:ty),*) => { | ||
466 | match $kind { | ||
467 | $( | ||
468 | stringify!($ty) => { | ||
469 | let n: $ty = n.parse().unwrap(); | ||
470 | format!(concat!("{}", stringify!($ty)), n) | ||
471 | } | ||
472 | )* | ||
473 | _ => unimplemented!("unknown args for typed_integer: n {}, kind {}", n, $kind), | ||
474 | } | ||
475 | } | ||
476 | } | ||
477 | |||
478 | let text = | ||
479 | def_suffixed_integer! {kind, u8, u16, u32, u64, u128, usize, i8, i16, i32, i64, i128}; | ||
480 | |||
481 | Literal { text: text.into(), id: tt::TokenId::unspecified() } | ||
482 | } | ||
483 | |||
484 | fn float(&mut self, n: &str) -> Self::Literal { | ||
485 | let n: f64 = n.parse().unwrap(); | ||
486 | let mut text = f64::to_string(&n); | ||
487 | if !text.contains('.') { | ||
488 | text += ".0" | ||
489 | } | ||
490 | Literal { text: text.into(), id: tt::TokenId::unspecified() } | ||
491 | } | ||
492 | |||
493 | fn f32(&mut self, n: &str) -> Self::Literal { | ||
494 | let n: f32 = n.parse().unwrap(); | ||
495 | let text = format!("{}f32", n); | ||
496 | Literal { text: text.into(), id: tt::TokenId::unspecified() } | ||
497 | } | ||
498 | |||
499 | fn f64(&mut self, n: &str) -> Self::Literal { | ||
500 | let n: f64 = n.parse().unwrap(); | ||
501 | let text = format!("{}f64", n); | ||
502 | Literal { text: text.into(), id: tt::TokenId::unspecified() } | ||
503 | } | ||
504 | |||
505 | fn string(&mut self, string: &str) -> Self::Literal { | ||
506 | let mut escaped = String::new(); | ||
507 | for ch in string.chars() { | ||
508 | escaped.extend(ch.escape_debug()); | ||
509 | } | ||
510 | Literal { text: format!("\"{}\"", escaped).into(), id: tt::TokenId::unspecified() } | ||
511 | } | ||
512 | |||
513 | fn character(&mut self, ch: char) -> Self::Literal { | ||
514 | Literal { text: format!("'{}'", ch).into(), id: tt::TokenId::unspecified() } | ||
515 | } | ||
516 | |||
517 | fn byte_string(&mut self, bytes: &[u8]) -> Self::Literal { | ||
518 | let string = bytes | ||
519 | .iter() | ||
520 | .cloned() | ||
521 | .flat_map(ascii::escape_default) | ||
522 | .map(Into::<char>::into) | ||
523 | .collect::<String>(); | ||
524 | |||
525 | Literal { text: format!("b\"{}\"", string).into(), id: tt::TokenId::unspecified() } | ||
526 | } | ||
527 | |||
528 | fn span(&mut self, literal: &Self::Literal) -> Self::Span { | ||
529 | literal.id | ||
530 | } | ||
531 | |||
532 | fn set_span(&mut self, _literal: &mut Self::Literal, _span: Self::Span) { | ||
533 | // FIXME handle span | ||
534 | } | ||
535 | |||
536 | fn subspan( | ||
537 | &mut self, | ||
538 | _literal: &Self::Literal, | ||
539 | _start: Bound<usize>, | ||
540 | _end: Bound<usize>, | ||
541 | ) -> Option<Self::Span> { | ||
542 | // FIXME handle span | ||
543 | None | ||
544 | } | ||
545 | } | ||
546 | |||
547 | impl server::SourceFile for Rustc { | ||
548 | fn eq(&mut self, file1: &Self::SourceFile, file2: &Self::SourceFile) -> bool { | ||
549 | file1.eq(file2) | ||
550 | } | ||
551 | fn path(&mut self, file: &Self::SourceFile) -> String { | ||
552 | String::from( | ||
553 | file.path().to_str().expect("non-UTF8 file path in `proc_macro::SourceFile::path`"), | ||
554 | ) | ||
555 | } | ||
556 | fn is_real(&mut self, file: &Self::SourceFile) -> bool { | ||
557 | file.is_real() | ||
558 | } | ||
559 | } | ||
560 | |||
561 | impl server::Diagnostic for Rustc { | ||
562 | fn new(&mut self, level: Level, msg: &str, spans: Self::MultiSpan) -> Self::Diagnostic { | ||
563 | let mut diag = Diagnostic::new(level, msg); | ||
564 | diag.spans = spans; | ||
565 | diag | ||
566 | } | ||
567 | |||
568 | fn sub( | ||
569 | &mut self, | ||
570 | _diag: &mut Self::Diagnostic, | ||
571 | _level: Level, | ||
572 | _msg: &str, | ||
573 | _spans: Self::MultiSpan, | ||
574 | ) { | ||
575 | // FIXME handle diagnostic | ||
576 | // | ||
577 | } | ||
578 | |||
579 | fn emit(&mut self, _diag: Self::Diagnostic) { | ||
580 | // FIXME handle diagnostic | ||
581 | // diag.emit() | ||
582 | } | ||
583 | } | ||
584 | |||
585 | impl server::Span for Rustc { | ||
586 | fn debug(&mut self, span: Self::Span) -> String { | ||
587 | format!("{:?}", span.0) | ||
588 | } | ||
589 | fn def_site(&mut self) -> Self::Span { | ||
590 | // MySpan(self.span_interner.intern(&MySpanData(Span::def_site()))) | ||
591 | // FIXME handle span | ||
592 | tt::TokenId::unspecified() | ||
593 | } | ||
594 | fn call_site(&mut self) -> Self::Span { | ||
595 | // MySpan(self.span_interner.intern(&MySpanData(Span::call_site()))) | ||
596 | // FIXME handle span | ||
597 | tt::TokenId::unspecified() | ||
598 | } | ||
599 | fn source_file(&mut self, _span: Self::Span) -> Self::SourceFile { | ||
600 | // let MySpanData(span) = self.span_interner.get(span.0); | ||
601 | unimplemented!() | ||
602 | } | ||
603 | |||
604 | /// Recent feature, not yet in the proc_macro | ||
605 | /// | ||
606 | /// See PR: | ||
607 | /// https://github.com/rust-lang/rust/pull/55780 | ||
608 | fn source_text(&mut self, _span: Self::Span) -> Option<String> { | ||
609 | None | ||
610 | } | ||
611 | |||
612 | fn parent(&mut self, _span: Self::Span) -> Option<Self::Span> { | ||
613 | // FIXME handle span | ||
614 | None | ||
615 | } | ||
616 | fn source(&mut self, span: Self::Span) -> Self::Span { | ||
617 | // FIXME handle span | ||
618 | span | ||
619 | } | ||
620 | fn start(&mut self, _span: Self::Span) -> LineColumn { | ||
621 | // FIXME handle span | ||
622 | LineColumn { line: 0, column: 0 } | ||
623 | } | ||
624 | fn end(&mut self, _span: Self::Span) -> LineColumn { | ||
625 | // FIXME handle span | ||
626 | LineColumn { line: 0, column: 0 } | ||
627 | } | ||
628 | fn join(&mut self, _first: Self::Span, _second: Self::Span) -> Option<Self::Span> { | ||
629 | None | ||
630 | } | ||
631 | fn resolved_at(&mut self, _span: Self::Span, _at: Self::Span) -> Self::Span { | ||
632 | // FIXME handle span | ||
633 | tt::TokenId::unspecified() | ||
634 | } | ||
635 | |||
636 | fn mixed_site(&mut self) -> Self::Span { | ||
637 | // FIXME handle span | ||
638 | tt::TokenId::unspecified() | ||
639 | } | ||
640 | } | ||
641 | |||
642 | impl server::MultiSpan for Rustc { | ||
643 | fn new(&mut self) -> Self::MultiSpan { | ||
644 | // FIXME handle span | ||
645 | vec![] | ||
646 | } | ||
647 | |||
648 | fn push(&mut self, other: &mut Self::MultiSpan, span: Self::Span) { | ||
649 | //TODP | ||
650 | other.push(span) | ||
651 | } | ||
652 | } | ||
653 | |||
654 | #[cfg(test)] | ||
655 | mod tests { | ||
656 | use super::*; | ||
657 | use crate::proc_macro::bridge::server::Literal; | ||
658 | |||
659 | #[test] | ||
660 | fn test_rustc_server_literals() { | ||
661 | let mut srv = Rustc { ident_interner: IdentInterner::default() }; | ||
662 | assert_eq!(srv.integer("1234").text, "1234"); | ||
663 | |||
664 | assert_eq!(srv.typed_integer("12", "u8").text, "12u8"); | ||
665 | assert_eq!(srv.typed_integer("255", "u16").text, "255u16"); | ||
666 | assert_eq!(srv.typed_integer("1234", "u32").text, "1234u32"); | ||
667 | assert_eq!(srv.typed_integer("15846685", "u64").text, "15846685u64"); | ||
668 | assert_eq!(srv.typed_integer("15846685258", "u128").text, "15846685258u128"); | ||
669 | assert_eq!(srv.typed_integer("156788984", "usize").text, "156788984usize"); | ||
670 | assert_eq!(srv.typed_integer("127", "i8").text, "127i8"); | ||
671 | assert_eq!(srv.typed_integer("255", "i16").text, "255i16"); | ||
672 | assert_eq!(srv.typed_integer("1234", "i32").text, "1234i32"); | ||
673 | assert_eq!(srv.typed_integer("15846685", "i64").text, "15846685i64"); | ||
674 | assert_eq!(srv.typed_integer("15846685258", "i128").text, "15846685258i128"); | ||
675 | assert_eq!(srv.float("0").text, "0.0"); | ||
676 | assert_eq!(srv.float("15684.5867").text, "15684.5867"); | ||
677 | assert_eq!(srv.f32("15684.58").text, "15684.58f32"); | ||
678 | assert_eq!(srv.f64("15684.58").text, "15684.58f64"); | ||
679 | |||
680 | assert_eq!(srv.string("hello_world").text, "\"hello_world\""); | ||
681 | assert_eq!(srv.character('c').text, "'c'"); | ||
682 | assert_eq!(srv.byte_string(b"1234586\x88").text, "b\"1234586\\x88\""); | ||
683 | } | ||
684 | } | ||
diff --git a/crates/ra_syntax/src/algo.rs b/crates/ra_syntax/src/algo.rs index 8d1098036..7f87f4212 100644 --- a/crates/ra_syntax/src/algo.rs +++ b/crates/ra_syntax/src/algo.rs | |||
@@ -7,7 +7,7 @@ use std::{ | |||
7 | 7 | ||
8 | use itertools::Itertools; | 8 | use itertools::Itertools; |
9 | use ra_text_edit::TextEditBuilder; | 9 | use ra_text_edit::TextEditBuilder; |
10 | use rustc_hash::{FxHashMap, FxHashSet}; | 10 | use rustc_hash::FxHashMap; |
11 | 11 | ||
12 | use crate::{ | 12 | use crate::{ |
13 | AstNode, Direction, NodeOrToken, SyntaxElement, SyntaxNode, SyntaxNodePtr, SyntaxToken, | 13 | AstNode, Direction, NodeOrToken, SyntaxElement, SyntaxNode, SyntaxNodePtr, SyntaxToken, |
@@ -72,8 +72,18 @@ pub fn find_covering_element(root: &SyntaxNode, range: TextRange) -> SyntaxEleme | |||
72 | } | 72 | } |
73 | 73 | ||
74 | pub fn least_common_ancestor(u: &SyntaxNode, v: &SyntaxNode) -> Option<SyntaxNode> { | 74 | pub fn least_common_ancestor(u: &SyntaxNode, v: &SyntaxNode) -> Option<SyntaxNode> { |
75 | let u_ancestors = u.ancestors().collect::<FxHashSet<SyntaxNode>>(); | 75 | if u == v { |
76 | v.ancestors().find(|it| u_ancestors.contains(it)) | 76 | return Some(u.clone()); |
77 | } | ||
78 | |||
79 | let u_depth = u.ancestors().count(); | ||
80 | let v_depth = v.ancestors().count(); | ||
81 | let keep = u_depth.min(v_depth); | ||
82 | |||
83 | let u_candidates = u.ancestors().skip(u_depth - keep); | ||
84 | let v_canidates = v.ancestors().skip(v_depth - keep); | ||
85 | let (res, _) = u_candidates.zip(v_canidates).find(|(x, y)| x == y)?; | ||
86 | Some(res) | ||
77 | } | 87 | } |
78 | 88 | ||
79 | pub fn neighbor<T: AstNode>(me: &T, direction: Direction) -> Option<T> { | 89 | pub fn neighbor<T: AstNode>(me: &T, direction: Direction) -> Option<T> { |
diff --git a/crates/ra_syntax/src/ast.rs b/crates/ra_syntax/src/ast.rs index 26fafb469..15a8279f3 100644 --- a/crates/ra_syntax/src/ast.rs +++ b/crates/ra_syntax/src/ast.rs | |||
@@ -21,7 +21,7 @@ pub use self::{ | |||
21 | AttrKind, FieldKind, PathSegmentKind, SelfParamKind, SlicePatComponents, StructKind, | 21 | AttrKind, FieldKind, PathSegmentKind, SelfParamKind, SlicePatComponents, StructKind, |
22 | TypeBoundKind, VisibilityKind, | 22 | TypeBoundKind, VisibilityKind, |
23 | }, | 23 | }, |
24 | generated::*, | 24 | generated::{nodes::*, tokens::*}, |
25 | tokens::*, | 25 | tokens::*, |
26 | traits::*, | 26 | traits::*, |
27 | }; | 27 | }; |
@@ -30,7 +30,7 @@ pub use self::{ | |||
30 | /// conversion itself has zero runtime cost: ast and syntax nodes have exactly | 30 | /// conversion itself has zero runtime cost: ast and syntax nodes have exactly |
31 | /// the same representation: a pointer to the tree root and a pointer to the | 31 | /// the same representation: a pointer to the tree root and a pointer to the |
32 | /// node itself. | 32 | /// node itself. |
33 | pub trait AstNode: std::fmt::Display { | 33 | pub trait AstNode { |
34 | fn can_cast(kind: SyntaxKind) -> bool | 34 | fn can_cast(kind: SyntaxKind) -> bool |
35 | where | 35 | where |
36 | Self: Sized; | 36 | Self: Sized; |
@@ -49,15 +49,37 @@ fn assert_ast_is_object_safe() { | |||
49 | 49 | ||
50 | /// Like `AstNode`, but wraps tokens rather than interior nodes. | 50 | /// Like `AstNode`, but wraps tokens rather than interior nodes. |
51 | pub trait AstToken { | 51 | pub trait AstToken { |
52 | fn cast(token: SyntaxToken) -> Option<Self> | 52 | fn can_cast(token: SyntaxKind) -> bool |
53 | where | 53 | where |
54 | Self: Sized; | 54 | Self: Sized; |
55 | |||
56 | fn cast(syntax: SyntaxToken) -> Option<Self> | ||
57 | where | ||
58 | Self: Sized; | ||
59 | |||
55 | fn syntax(&self) -> &SyntaxToken; | 60 | fn syntax(&self) -> &SyntaxToken; |
61 | |||
56 | fn text(&self) -> &SmolStr { | 62 | fn text(&self) -> &SmolStr { |
57 | self.syntax().text() | 63 | self.syntax().text() |
58 | } | 64 | } |
59 | } | 65 | } |
60 | 66 | ||
67 | mod support { | ||
68 | use super::{AstChildren, AstNode, AstToken, SyntaxNode}; | ||
69 | |||
70 | pub(super) fn child<N: AstNode>(parent: &SyntaxNode) -> Option<N> { | ||
71 | parent.children().find_map(N::cast) | ||
72 | } | ||
73 | |||
74 | pub(super) fn children<N: AstNode>(parent: &SyntaxNode) -> AstChildren<N> { | ||
75 | AstChildren::new(parent) | ||
76 | } | ||
77 | |||
78 | pub(super) fn token<T: AstToken>(parent: &SyntaxNode) -> Option<T> { | ||
79 | parent.children_with_tokens().filter_map(|it| it.into_token()).find_map(T::cast) | ||
80 | } | ||
81 | } | ||
82 | |||
61 | /// An iterator over `SyntaxNode` children of a particular AST type. | 83 | /// An iterator over `SyntaxNode` children of a particular AST type. |
62 | #[derive(Debug, Clone)] | 84 | #[derive(Debug, Clone)] |
63 | pub struct AstChildren<N> { | 85 | pub struct AstChildren<N> { |
diff --git a/crates/ra_syntax/src/ast/edit.rs b/crates/ra_syntax/src/ast/edit.rs index b69cae234..069c6ee82 100644 --- a/crates/ra_syntax/src/ast/edit.rs +++ b/crates/ra_syntax/src/ast/edit.rs | |||
@@ -33,9 +33,9 @@ impl ast::FnDef { | |||
33 | let mut to_insert: ArrayVec<[SyntaxElement; 2]> = ArrayVec::new(); | 33 | let mut to_insert: ArrayVec<[SyntaxElement; 2]> = ArrayVec::new(); |
34 | let old_body_or_semi: SyntaxElement = if let Some(old_body) = self.body() { | 34 | let old_body_or_semi: SyntaxElement = if let Some(old_body) = self.body() { |
35 | old_body.syntax().clone().into() | 35 | old_body.syntax().clone().into() |
36 | } else if let Some(semi) = self.semicolon_token() { | 36 | } else if let Some(semi) = self.semi_token() { |
37 | to_insert.push(make::tokens::single_space().into()); | 37 | to_insert.push(make::tokens::single_space().into()); |
38 | semi.into() | 38 | semi.syntax.clone().into() |
39 | } else { | 39 | } else { |
40 | to_insert.push(make::tokens::single_space().into()); | 40 | to_insert.push(make::tokens::single_space().into()); |
41 | to_insert.push(body.syntax().clone().into()); | 41 | to_insert.push(body.syntax().clone().into()); |
@@ -96,10 +96,10 @@ impl ast::ItemList { | |||
96 | leading_indent(it.syntax()).unwrap_or_default().to_string(), | 96 | leading_indent(it.syntax()).unwrap_or_default().to_string(), |
97 | InsertPosition::After(it.syntax().clone().into()), | 97 | InsertPosition::After(it.syntax().clone().into()), |
98 | ), | 98 | ), |
99 | None => match self.l_curly() { | 99 | None => match self.l_curly_token() { |
100 | Some(it) => ( | 100 | Some(it) => ( |
101 | " ".to_string() + &leading_indent(self.syntax()).unwrap_or_default(), | 101 | " ".to_string() + &leading_indent(self.syntax()).unwrap_or_default(), |
102 | InsertPosition::After(it), | 102 | InsertPosition::After(it.syntax().clone().into()), |
103 | ), | 103 | ), |
104 | None => return self.clone(), | 104 | None => return self.clone(), |
105 | }, | 105 | }, |
@@ -109,10 +109,6 @@ impl ast::ItemList { | |||
109 | [ws.ws().into(), item.syntax().clone().into()].into(); | 109 | [ws.ws().into(), item.syntax().clone().into()].into(); |
110 | self.insert_children(position, to_insert) | 110 | self.insert_children(position, to_insert) |
111 | } | 111 | } |
112 | |||
113 | fn l_curly(&self) -> Option<SyntaxElement> { | ||
114 | self.syntax().children_with_tokens().find(|it| it.kind() == T!['{']) | ||
115 | } | ||
116 | } | 112 | } |
117 | 113 | ||
118 | impl ast::RecordFieldList { | 114 | impl ast::RecordFieldList { |
@@ -146,8 +142,8 @@ impl ast::RecordFieldList { | |||
146 | 142 | ||
147 | macro_rules! after_l_curly { | 143 | macro_rules! after_l_curly { |
148 | () => {{ | 144 | () => {{ |
149 | let anchor = match self.l_curly() { | 145 | let anchor = match self.l_curly_token() { |
150 | Some(it) => it, | 146 | Some(it) => it.syntax().clone().into(), |
151 | None => return self.clone(), | 147 | None => return self.clone(), |
152 | }; | 148 | }; |
153 | InsertPosition::After(anchor) | 149 | InsertPosition::After(anchor) |
@@ -189,24 +185,20 @@ impl ast::RecordFieldList { | |||
189 | 185 | ||
190 | self.insert_children(position, to_insert) | 186 | self.insert_children(position, to_insert) |
191 | } | 187 | } |
192 | |||
193 | fn l_curly(&self) -> Option<SyntaxElement> { | ||
194 | self.syntax().children_with_tokens().find(|it| it.kind() == T!['{']) | ||
195 | } | ||
196 | } | 188 | } |
197 | 189 | ||
198 | impl ast::TypeParam { | 190 | impl ast::TypeParam { |
199 | #[must_use] | 191 | #[must_use] |
200 | pub fn remove_bounds(&self) -> ast::TypeParam { | 192 | pub fn remove_bounds(&self) -> ast::TypeParam { |
201 | let colon = match self.colon_token() { | 193 | let colon = match self.colon() { |
202 | Some(it) => it, | 194 | Some(it) => it, |
203 | None => return self.clone(), | 195 | None => return self.clone(), |
204 | }; | 196 | }; |
205 | let end = match self.type_bound_list() { | 197 | let end = match self.type_bound_list() { |
206 | Some(it) => it.syntax().clone().into(), | 198 | Some(it) => it.syntax().clone().into(), |
207 | None => colon.clone().into(), | 199 | None => colon.syntax().clone().into(), |
208 | }; | 200 | }; |
209 | self.replace_children(colon.into()..=end, iter::empty()) | 201 | self.replace_children(colon.syntax().clone().into()..=end, iter::empty()) |
210 | } | 202 | } |
211 | } | 203 | } |
212 | 204 | ||
@@ -305,8 +297,12 @@ impl ast::UseTree { | |||
305 | Some(it) => it, | 297 | Some(it) => it, |
306 | None => return self.clone(), | 298 | None => return self.clone(), |
307 | }; | 299 | }; |
308 | let use_tree = | 300 | let use_tree = make::use_tree( |
309 | make::use_tree(suffix.clone(), self.use_tree_list(), self.alias(), self.has_star()); | 301 | suffix.clone(), |
302 | self.use_tree_list(), | ||
303 | self.alias(), | ||
304 | self.star_token().is_some(), | ||
305 | ); | ||
310 | let nested = make::use_tree_list(iter::once(use_tree)); | 306 | let nested = make::use_tree_list(iter::once(use_tree)); |
311 | return make::use_tree(prefix.clone(), Some(nested), None, false); | 307 | return make::use_tree(prefix.clone(), Some(nested), None, false); |
312 | 308 | ||
diff --git a/crates/ra_syntax/src/ast/expr_extensions.rs b/crates/ra_syntax/src/ast/expr_extensions.rs index 8bbd946c0..40c8fca3b 100644 --- a/crates/ra_syntax/src/ast/expr_extensions.rs +++ b/crates/ra_syntax/src/ast/expr_extensions.rs | |||
@@ -52,6 +52,10 @@ impl ast::RefExpr { | |||
52 | pub fn is_mut(&self) -> bool { | 52 | pub fn is_mut(&self) -> bool { |
53 | self.syntax().children_with_tokens().any(|n| n.kind() == T![mut]) | 53 | self.syntax().children_with_tokens().any(|n| n.kind() == T![mut]) |
54 | } | 54 | } |
55 | |||
56 | pub fn raw_token(&self) -> Option<SyntaxToken> { | ||
57 | None // FIXME: implement &raw | ||
58 | } | ||
55 | } | 59 | } |
56 | 60 | ||
57 | #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)] | 61 | #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)] |
diff --git a/crates/ra_syntax/src/ast/extensions.rs b/crates/ra_syntax/src/ast/extensions.rs index bf7d137be..b50a89864 100644 --- a/crates/ra_syntax/src/ast/extensions.rs +++ b/crates/ra_syntax/src/ast/extensions.rs | |||
@@ -2,14 +2,14 @@ | |||
2 | //! Extensions for various expressions live in a sibling `expr_extensions` module. | 2 | //! Extensions for various expressions live in a sibling `expr_extensions` module. |
3 | 3 | ||
4 | use itertools::Itertools; | 4 | use itertools::Itertools; |
5 | use ra_parser::SyntaxKind; | ||
5 | 6 | ||
6 | use crate::{ | 7 | use crate::{ |
7 | ast::{self, child_opt, children, AstNode, AttrInput, NameOwner, SyntaxNode}, | 8 | ast::{ |
8 | SmolStr, SyntaxElement, | 9 | self, child_opt, children, support, AstNode, AstToken, AttrInput, NameOwner, SyntaxNode, |
9 | SyntaxKind::*, | 10 | }, |
10 | SyntaxToken, T, | 11 | SmolStr, SyntaxElement, SyntaxToken, T, |
11 | }; | 12 | }; |
12 | use ra_parser::SyntaxKind; | ||
13 | 13 | ||
14 | impl ast::Name { | 14 | impl ast::Name { |
15 | pub fn text(&self) -> &SmolStr { | 15 | pub fn text(&self) -> &SmolStr { |
@@ -23,13 +23,11 @@ impl ast::NameRef { | |||
23 | } | 23 | } |
24 | 24 | ||
25 | pub fn as_tuple_field(&self) -> Option<usize> { | 25 | pub fn as_tuple_field(&self) -> Option<usize> { |
26 | self.syntax().children_with_tokens().find_map(|c| { | 26 | if let Some(ast::NameRefToken::IntNumber(token)) = self.name_ref_token_token() { |
27 | if c.kind() == SyntaxKind::INT_NUMBER { | 27 | token.text().as_str().parse().ok() |
28 | c.as_token().and_then(|tok| tok.text().as_str().parse().ok()) | 28 | } else { |
29 | } else { | 29 | None |
30 | None | 30 | } |
31 | } | ||
32 | }) | ||
33 | } | 31 | } |
34 | } | 32 | } |
35 | 33 | ||
@@ -130,13 +128,6 @@ impl ast::PathSegment { | |||
130 | }; | 128 | }; |
131 | Some(res) | 129 | Some(res) |
132 | } | 130 | } |
133 | |||
134 | pub fn has_colon_colon(&self) -> bool { | ||
135 | match self.syntax.first_child_or_token().map(|s| s.kind()) { | ||
136 | Some(T![::]) => true, | ||
137 | _ => false, | ||
138 | } | ||
139 | } | ||
140 | } | 131 | } |
141 | 132 | ||
142 | impl ast::Path { | 133 | impl ast::Path { |
@@ -145,21 +136,6 @@ impl ast::Path { | |||
145 | } | 136 | } |
146 | } | 137 | } |
147 | 138 | ||
148 | impl ast::Module { | ||
149 | pub fn has_semi(&self) -> bool { | ||
150 | match self.syntax().last_child_or_token() { | ||
151 | None => false, | ||
152 | Some(node) => node.kind() == T![;], | ||
153 | } | ||
154 | } | ||
155 | } | ||
156 | |||
157 | impl ast::UseTree { | ||
158 | pub fn has_star(&self) -> bool { | ||
159 | self.syntax().children_with_tokens().any(|it| it.kind() == T![*]) | ||
160 | } | ||
161 | } | ||
162 | |||
163 | impl ast::UseTreeList { | 139 | impl ast::UseTreeList { |
164 | pub fn parent_use_tree(&self) -> ast::UseTree { | 140 | pub fn parent_use_tree(&self) -> ast::UseTree { |
165 | self.syntax() | 141 | self.syntax() |
@@ -167,20 +143,6 @@ impl ast::UseTreeList { | |||
167 | .and_then(ast::UseTree::cast) | 143 | .and_then(ast::UseTree::cast) |
168 | .expect("UseTreeLists are always nested in UseTrees") | 144 | .expect("UseTreeLists are always nested in UseTrees") |
169 | } | 145 | } |
170 | pub fn l_curly(&self) -> Option<SyntaxToken> { | ||
171 | self.token(T!['{']) | ||
172 | } | ||
173 | |||
174 | pub fn r_curly(&self) -> Option<SyntaxToken> { | ||
175 | self.token(T!['}']) | ||
176 | } | ||
177 | |||
178 | fn token(&self, kind: SyntaxKind) -> Option<SyntaxToken> { | ||
179 | self.syntax() | ||
180 | .children_with_tokens() | ||
181 | .filter_map(|it| it.into_token()) | ||
182 | .find(|it| it.kind() == kind) | ||
183 | } | ||
184 | } | 146 | } |
185 | 147 | ||
186 | impl ast::ImplDef { | 148 | impl ast::ImplDef { |
@@ -204,10 +166,6 @@ impl ast::ImplDef { | |||
204 | let second = types.next(); | 166 | let second = types.next(); |
205 | (first, second) | 167 | (first, second) |
206 | } | 168 | } |
207 | |||
208 | pub fn is_negative(&self) -> bool { | ||
209 | self.syntax().children_with_tokens().any(|t| t.kind() == T![!]) | ||
210 | } | ||
211 | } | 169 | } |
212 | 170 | ||
213 | #[derive(Debug, Clone, PartialEq, Eq)] | 171 | #[derive(Debug, Clone, PartialEq, Eq)] |
@@ -248,41 +206,6 @@ impl ast::EnumVariant { | |||
248 | } | 206 | } |
249 | } | 207 | } |
250 | 208 | ||
251 | impl ast::FnDef { | ||
252 | pub fn semicolon_token(&self) -> Option<SyntaxToken> { | ||
253 | self.syntax() | ||
254 | .last_child_or_token() | ||
255 | .and_then(|it| it.into_token()) | ||
256 | .filter(|it| it.kind() == T![;]) | ||
257 | } | ||
258 | |||
259 | pub fn is_async(&self) -> bool { | ||
260 | self.syntax().children_with_tokens().any(|it| it.kind() == T![async]) | ||
261 | } | ||
262 | } | ||
263 | |||
264 | impl ast::LetStmt { | ||
265 | pub fn has_semi(&self) -> bool { | ||
266 | match self.syntax().last_child_or_token() { | ||
267 | None => false, | ||
268 | Some(node) => node.kind() == T![;], | ||
269 | } | ||
270 | } | ||
271 | |||
272 | pub fn eq_token(&self) -> Option<SyntaxToken> { | ||
273 | self.syntax().children_with_tokens().find(|t| t.kind() == EQ).and_then(|it| it.into_token()) | ||
274 | } | ||
275 | } | ||
276 | |||
277 | impl ast::ExprStmt { | ||
278 | pub fn has_semi(&self) -> bool { | ||
279 | match self.syntax().last_child_or_token() { | ||
280 | None => false, | ||
281 | Some(node) => node.kind() == T![;], | ||
282 | } | ||
283 | } | ||
284 | } | ||
285 | |||
286 | #[derive(Debug, Clone, PartialEq, Eq)] | 209 | #[derive(Debug, Clone, PartialEq, Eq)] |
287 | pub enum FieldKind { | 210 | pub enum FieldKind { |
288 | Name(ast::NameRef), | 211 | Name(ast::NameRef), |
@@ -311,25 +234,6 @@ impl ast::FieldExpr { | |||
311 | } | 234 | } |
312 | } | 235 | } |
313 | 236 | ||
314 | impl ast::RefPat { | ||
315 | pub fn is_mut(&self) -> bool { | ||
316 | self.syntax().children_with_tokens().any(|n| n.kind() == T![mut]) | ||
317 | } | ||
318 | } | ||
319 | |||
320 | impl ast::BindPat { | ||
321 | pub fn is_mutable(&self) -> bool { | ||
322 | self.syntax().children_with_tokens().any(|n| n.kind() == T![mut]) | ||
323 | } | ||
324 | |||
325 | pub fn is_ref(&self) -> bool { | ||
326 | self.syntax().children_with_tokens().any(|n| n.kind() == T![ref]) | ||
327 | } | ||
328 | pub fn has_at(&self) -> bool { | ||
329 | self.syntax().children_with_tokens().any(|it| it.kind() == T![@]) | ||
330 | } | ||
331 | } | ||
332 | |||
333 | pub struct SlicePatComponents { | 237 | pub struct SlicePatComponents { |
334 | pub prefix: Vec<ast::Pat>, | 238 | pub prefix: Vec<ast::Pat>, |
335 | pub slice: Option<ast::Pat>, | 239 | pub slice: Option<ast::Pat>, |
@@ -364,18 +268,6 @@ impl ast::SlicePat { | |||
364 | } | 268 | } |
365 | } | 269 | } |
366 | 270 | ||
367 | impl ast::PointerType { | ||
368 | pub fn is_mut(&self) -> bool { | ||
369 | self.syntax().children_with_tokens().any(|n| n.kind() == T![mut]) | ||
370 | } | ||
371 | } | ||
372 | |||
373 | impl ast::ReferenceType { | ||
374 | pub fn is_mut(&self) -> bool { | ||
375 | self.syntax().children_with_tokens().any(|n| n.kind() == T![mut]) | ||
376 | } | ||
377 | } | ||
378 | |||
379 | #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)] | 271 | #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)] |
380 | pub enum SelfParamKind { | 272 | pub enum SelfParamKind { |
381 | /// self | 273 | /// self |
@@ -387,24 +279,9 @@ pub enum SelfParamKind { | |||
387 | } | 279 | } |
388 | 280 | ||
389 | impl ast::SelfParam { | 281 | impl ast::SelfParam { |
390 | pub fn self_kw_token(&self) -> SyntaxToken { | ||
391 | self.syntax() | ||
392 | .children_with_tokens() | ||
393 | .filter_map(|it| it.into_token()) | ||
394 | .find(|it| it.kind() == T![self]) | ||
395 | .expect("invalid tree: self param must have self") | ||
396 | } | ||
397 | |||
398 | pub fn kind(&self) -> SelfParamKind { | 282 | pub fn kind(&self) -> SelfParamKind { |
399 | let borrowed = self.syntax().children_with_tokens().any(|n| n.kind() == T![&]); | 283 | if self.amp_token().is_some() { |
400 | if borrowed { | 284 | if self.amp_mut_kw_token().is_some() { |
401 | // check for a `mut` coming after the & -- `mut &self` != `&mut self` | ||
402 | if self | ||
403 | .syntax() | ||
404 | .children_with_tokens() | ||
405 | .skip_while(|n| n.kind() != T![&]) | ||
406 | .any(|n| n.kind() == T![mut]) | ||
407 | { | ||
408 | SelfParamKind::MutRef | 285 | SelfParamKind::MutRef |
409 | } else { | 286 | } else { |
410 | SelfParamKind::Ref | 287 | SelfParamKind::Ref |
@@ -413,32 +290,23 @@ impl ast::SelfParam { | |||
413 | SelfParamKind::Owned | 290 | SelfParamKind::Owned |
414 | } | 291 | } |
415 | } | 292 | } |
416 | } | ||
417 | 293 | ||
418 | impl ast::LifetimeParam { | 294 | /// the "mut" in "mut self", not the one in "&mut self" |
419 | pub fn lifetime_token(&self) -> Option<SyntaxToken> { | 295 | pub fn mut_kw_token(&self) -> Option<ast::MutKw> { |
420 | self.syntax() | 296 | self.syntax() |
421 | .children_with_tokens() | 297 | .children_with_tokens() |
422 | .filter_map(|it| it.into_token()) | 298 | .filter_map(|it| it.into_token()) |
423 | .find(|it| it.kind() == LIFETIME) | 299 | .take_while(|it| it.kind() != T![&]) |
300 | .find_map(ast::MutKw::cast) | ||
424 | } | 301 | } |
425 | } | ||
426 | 302 | ||
427 | impl ast::TypeParam { | 303 | /// the "mut" in "&mut self", not the one in "mut self" |
428 | pub fn colon_token(&self) -> Option<SyntaxToken> { | 304 | pub fn amp_mut_kw_token(&self) -> Option<ast::MutKw> { |
429 | self.syntax() | 305 | self.syntax() |
430 | .children_with_tokens() | 306 | .children_with_tokens() |
431 | .filter_map(|it| it.into_token()) | 307 | .filter_map(|it| it.into_token()) |
432 | .find(|it| it.kind() == T![:]) | 308 | .skip_while(|it| it.kind() != T![&]) |
433 | } | 309 | .find_map(ast::MutKw::cast) |
434 | } | ||
435 | |||
436 | impl ast::WherePred { | ||
437 | pub fn lifetime_token(&self) -> Option<SyntaxToken> { | ||
438 | self.syntax() | ||
439 | .children_with_tokens() | ||
440 | .filter_map(|it| it.into_token()) | ||
441 | .find(|it| it.kind() == LIFETIME) | ||
442 | } | 310 | } |
443 | } | 311 | } |
444 | 312 | ||
@@ -449,7 +317,7 @@ pub enum TypeBoundKind { | |||
449 | /// for<'a> ... | 317 | /// for<'a> ... |
450 | ForType(ast::ForType), | 318 | ForType(ast::ForType), |
451 | /// 'a | 319 | /// 'a |
452 | Lifetime(ast::SyntaxToken), | 320 | Lifetime(ast::Lifetime), |
453 | } | 321 | } |
454 | 322 | ||
455 | impl ast::TypeBound { | 323 | impl ast::TypeBound { |
@@ -458,34 +326,31 @@ impl ast::TypeBound { | |||
458 | TypeBoundKind::PathType(path_type) | 326 | TypeBoundKind::PathType(path_type) |
459 | } else if let Some(for_type) = children(self).next() { | 327 | } else if let Some(for_type) = children(self).next() { |
460 | TypeBoundKind::ForType(for_type) | 328 | TypeBoundKind::ForType(for_type) |
461 | } else if let Some(lifetime) = self.lifetime() { | 329 | } else if let Some(lifetime) = self.lifetime_token() { |
462 | TypeBoundKind::Lifetime(lifetime) | 330 | TypeBoundKind::Lifetime(lifetime) |
463 | } else { | 331 | } else { |
464 | unreachable!() | 332 | unreachable!() |
465 | } | 333 | } |
466 | } | 334 | } |
467 | 335 | ||
468 | fn lifetime(&self) -> Option<SyntaxToken> { | 336 | pub fn const_question_token(&self) -> Option<ast::Question> { |
469 | self.syntax() | 337 | self.syntax() |
470 | .children_with_tokens() | 338 | .children_with_tokens() |
471 | .filter_map(|it| it.into_token()) | 339 | .filter_map(|it| it.into_token()) |
472 | .find(|it| it.kind() == LIFETIME) | 340 | .take_while(|it| it.kind() != T![const]) |
341 | .find_map(ast::Question::cast) | ||
473 | } | 342 | } |
474 | 343 | ||
475 | pub fn question_mark_token(&self) -> Option<SyntaxToken> { | 344 | pub fn question_token(&self) -> Option<ast::Question> { |
476 | self.syntax() | 345 | if self.const_kw_token().is_some() { |
477 | .children_with_tokens() | 346 | self.syntax() |
478 | .filter_map(|it| it.into_token()) | 347 | .children_with_tokens() |
479 | .find(|it| it.kind() == T![?]) | 348 | .filter_map(|it| it.into_token()) |
480 | } | 349 | .skip_while(|it| it.kind() != T![const]) |
481 | pub fn has_question_mark(&self) -> bool { | 350 | .find_map(ast::Question::cast) |
482 | self.question_mark_token().is_some() | 351 | } else { |
483 | } | 352 | support::token(&self.syntax) |
484 | } | 353 | } |
485 | |||
486 | impl ast::TraitDef { | ||
487 | pub fn is_auto(&self) -> bool { | ||
488 | self.syntax().children_with_tokens().any(|t| t.kind() == T![auto]) | ||
489 | } | 354 | } |
490 | } | 355 | } |
491 | 356 | ||
@@ -493,6 +358,7 @@ pub enum VisibilityKind { | |||
493 | In(ast::Path), | 358 | In(ast::Path), |
494 | PubCrate, | 359 | PubCrate, |
495 | PubSuper, | 360 | PubSuper, |
361 | PubSelf, | ||
496 | Pub, | 362 | Pub, |
497 | } | 363 | } |
498 | 364 | ||
@@ -500,22 +366,16 @@ impl ast::Visibility { | |||
500 | pub fn kind(&self) -> VisibilityKind { | 366 | pub fn kind(&self) -> VisibilityKind { |
501 | if let Some(path) = children(self).next() { | 367 | if let Some(path) = children(self).next() { |
502 | VisibilityKind::In(path) | 368 | VisibilityKind::In(path) |
503 | } else if self.is_pub_crate() { | 369 | } else if self.crate_kw_token().is_some() { |
504 | VisibilityKind::PubCrate | 370 | VisibilityKind::PubCrate |
505 | } else if self.is_pub_super() { | 371 | } else if self.super_kw_token().is_some() { |
372 | VisibilityKind::PubSuper | ||
373 | } else if self.self_kw_token().is_some() { | ||
506 | VisibilityKind::PubSuper | 374 | VisibilityKind::PubSuper |
507 | } else { | 375 | } else { |
508 | VisibilityKind::Pub | 376 | VisibilityKind::Pub |
509 | } | 377 | } |
510 | } | 378 | } |
511 | |||
512 | fn is_pub_crate(&self) -> bool { | ||
513 | self.syntax().children_with_tokens().any(|it| it.kind() == T![crate]) | ||
514 | } | ||
515 | |||
516 | fn is_pub_super(&self) -> bool { | ||
517 | self.syntax().children_with_tokens().any(|it| it.kind() == T![super]) | ||
518 | } | ||
519 | } | 379 | } |
520 | 380 | ||
521 | impl ast::MacroCall { | 381 | impl ast::MacroCall { |
@@ -528,3 +388,41 @@ impl ast::MacroCall { | |||
528 | } | 388 | } |
529 | } | 389 | } |
530 | } | 390 | } |
391 | |||
392 | impl ast::LifetimeParam { | ||
393 | pub fn lifetime_bounds(&self) -> impl Iterator<Item = ast::Lifetime> { | ||
394 | self.syntax() | ||
395 | .children_with_tokens() | ||
396 | .filter_map(|it| it.into_token()) | ||
397 | .skip_while(|x| x.kind() != T![:]) | ||
398 | .filter_map(ast::Lifetime::cast) | ||
399 | } | ||
400 | } | ||
401 | |||
402 | impl ast::RangePat { | ||
403 | pub fn start(&self) -> Option<ast::Pat> { | ||
404 | self.syntax() | ||
405 | .children_with_tokens() | ||
406 | .take_while(|it| !ast::RangeSeparator::can_cast(it.kind())) | ||
407 | .filter_map(|it| it.into_node()) | ||
408 | .find_map(ast::Pat::cast) | ||
409 | } | ||
410 | |||
411 | pub fn end(&self) -> Option<ast::Pat> { | ||
412 | self.syntax() | ||
413 | .children_with_tokens() | ||
414 | .skip_while(|it| !ast::RangeSeparator::can_cast(it.kind())) | ||
415 | .filter_map(|it| it.into_node()) | ||
416 | .find_map(ast::Pat::cast) | ||
417 | } | ||
418 | } | ||
419 | |||
420 | impl ast::TokenTree { | ||
421 | pub fn left_delimiter(&self) -> Option<ast::LeftDelimiter> { | ||
422 | self.syntax().first_child_or_token()?.into_token().and_then(ast::LeftDelimiter::cast) | ||
423 | } | ||
424 | |||
425 | pub fn right_delimiter(&self) -> Option<ast::RightDelimiter> { | ||
426 | self.syntax().last_child_or_token()?.into_token().and_then(ast::RightDelimiter::cast) | ||
427 | } | ||
428 | } | ||
diff --git a/crates/ra_syntax/src/ast/generated.rs b/crates/ra_syntax/src/ast/generated.rs index 0c339b987..f5199e09f 100644 --- a/crates/ra_syntax/src/ast/generated.rs +++ b/crates/ra_syntax/src/ast/generated.rs | |||
@@ -1,4850 +1,6 @@ | |||
1 | //! Generated file, do not edit by hand, see `xtask/src/codegen` | 1 | //! This file is actually hand-written, but the submodules are indeed generated. |
2 | 2 | ||
3 | use crate::{ | 3 | #[rustfmt::skip] |
4 | ast::{self, AstChildren, AstNode}, | 4 | pub(super) mod nodes; |
5 | SyntaxKind::{self, *}, | 5 | #[rustfmt::skip] |
6 | SyntaxNode, | 6 | pub(super) mod tokens; |
7 | }; | ||
8 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
9 | pub struct SourceFile { | ||
10 | pub(crate) syntax: SyntaxNode, | ||
11 | } | ||
12 | impl std::fmt::Display for SourceFile { | ||
13 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
14 | std::fmt::Display::fmt(self.syntax(), f) | ||
15 | } | ||
16 | } | ||
17 | impl AstNode for SourceFile { | ||
18 | fn can_cast(kind: SyntaxKind) -> bool { | ||
19 | match kind { | ||
20 | SOURCE_FILE => true, | ||
21 | _ => false, | ||
22 | } | ||
23 | } | ||
24 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
25 | if Self::can_cast(syntax.kind()) { | ||
26 | Some(Self { syntax }) | ||
27 | } else { | ||
28 | None | ||
29 | } | ||
30 | } | ||
31 | fn syntax(&self) -> &SyntaxNode { | ||
32 | &self.syntax | ||
33 | } | ||
34 | } | ||
35 | impl ast::ModuleItemOwner for SourceFile {} | ||
36 | impl ast::FnDefOwner for SourceFile {} | ||
37 | impl SourceFile { | ||
38 | pub fn modules(&self) -> AstChildren<Module> { | ||
39 | AstChildren::new(&self.syntax) | ||
40 | } | ||
41 | } | ||
42 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
43 | pub struct FnDef { | ||
44 | pub(crate) syntax: SyntaxNode, | ||
45 | } | ||
46 | impl std::fmt::Display for FnDef { | ||
47 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
48 | std::fmt::Display::fmt(self.syntax(), f) | ||
49 | } | ||
50 | } | ||
51 | impl AstNode for FnDef { | ||
52 | fn can_cast(kind: SyntaxKind) -> bool { | ||
53 | match kind { | ||
54 | FN_DEF => true, | ||
55 | _ => false, | ||
56 | } | ||
57 | } | ||
58 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
59 | if Self::can_cast(syntax.kind()) { | ||
60 | Some(Self { syntax }) | ||
61 | } else { | ||
62 | None | ||
63 | } | ||
64 | } | ||
65 | fn syntax(&self) -> &SyntaxNode { | ||
66 | &self.syntax | ||
67 | } | ||
68 | } | ||
69 | impl ast::VisibilityOwner for FnDef {} | ||
70 | impl ast::NameOwner for FnDef {} | ||
71 | impl ast::TypeParamsOwner for FnDef {} | ||
72 | impl ast::DocCommentsOwner for FnDef {} | ||
73 | impl ast::AttrsOwner for FnDef {} | ||
74 | impl FnDef { | ||
75 | pub fn param_list(&self) -> Option<ParamList> { | ||
76 | AstChildren::new(&self.syntax).next() | ||
77 | } | ||
78 | pub fn ret_type(&self) -> Option<RetType> { | ||
79 | AstChildren::new(&self.syntax).next() | ||
80 | } | ||
81 | pub fn body(&self) -> Option<BlockExpr> { | ||
82 | AstChildren::new(&self.syntax).next() | ||
83 | } | ||
84 | } | ||
85 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
86 | pub struct RetType { | ||
87 | pub(crate) syntax: SyntaxNode, | ||
88 | } | ||
89 | impl std::fmt::Display for RetType { | ||
90 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
91 | std::fmt::Display::fmt(self.syntax(), f) | ||
92 | } | ||
93 | } | ||
94 | impl AstNode for RetType { | ||
95 | fn can_cast(kind: SyntaxKind) -> bool { | ||
96 | match kind { | ||
97 | RET_TYPE => true, | ||
98 | _ => false, | ||
99 | } | ||
100 | } | ||
101 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
102 | if Self::can_cast(syntax.kind()) { | ||
103 | Some(Self { syntax }) | ||
104 | } else { | ||
105 | None | ||
106 | } | ||
107 | } | ||
108 | fn syntax(&self) -> &SyntaxNode { | ||
109 | &self.syntax | ||
110 | } | ||
111 | } | ||
112 | impl RetType { | ||
113 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
114 | AstChildren::new(&self.syntax).next() | ||
115 | } | ||
116 | } | ||
117 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
118 | pub struct StructDef { | ||
119 | pub(crate) syntax: SyntaxNode, | ||
120 | } | ||
121 | impl std::fmt::Display for StructDef { | ||
122 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
123 | std::fmt::Display::fmt(self.syntax(), f) | ||
124 | } | ||
125 | } | ||
126 | impl AstNode for StructDef { | ||
127 | fn can_cast(kind: SyntaxKind) -> bool { | ||
128 | match kind { | ||
129 | STRUCT_DEF => true, | ||
130 | _ => false, | ||
131 | } | ||
132 | } | ||
133 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
134 | if Self::can_cast(syntax.kind()) { | ||
135 | Some(Self { syntax }) | ||
136 | } else { | ||
137 | None | ||
138 | } | ||
139 | } | ||
140 | fn syntax(&self) -> &SyntaxNode { | ||
141 | &self.syntax | ||
142 | } | ||
143 | } | ||
144 | impl ast::VisibilityOwner for StructDef {} | ||
145 | impl ast::NameOwner for StructDef {} | ||
146 | impl ast::TypeParamsOwner for StructDef {} | ||
147 | impl ast::AttrsOwner for StructDef {} | ||
148 | impl ast::DocCommentsOwner for StructDef {} | ||
149 | impl StructDef {} | ||
150 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
151 | pub struct UnionDef { | ||
152 | pub(crate) syntax: SyntaxNode, | ||
153 | } | ||
154 | impl std::fmt::Display for UnionDef { | ||
155 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
156 | std::fmt::Display::fmt(self.syntax(), f) | ||
157 | } | ||
158 | } | ||
159 | impl AstNode for UnionDef { | ||
160 | fn can_cast(kind: SyntaxKind) -> bool { | ||
161 | match kind { | ||
162 | UNION_DEF => true, | ||
163 | _ => false, | ||
164 | } | ||
165 | } | ||
166 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
167 | if Self::can_cast(syntax.kind()) { | ||
168 | Some(Self { syntax }) | ||
169 | } else { | ||
170 | None | ||
171 | } | ||
172 | } | ||
173 | fn syntax(&self) -> &SyntaxNode { | ||
174 | &self.syntax | ||
175 | } | ||
176 | } | ||
177 | impl ast::VisibilityOwner for UnionDef {} | ||
178 | impl ast::NameOwner for UnionDef {} | ||
179 | impl ast::TypeParamsOwner for UnionDef {} | ||
180 | impl ast::AttrsOwner for UnionDef {} | ||
181 | impl ast::DocCommentsOwner for UnionDef {} | ||
182 | impl UnionDef { | ||
183 | pub fn record_field_def_list(&self) -> Option<RecordFieldDefList> { | ||
184 | AstChildren::new(&self.syntax).next() | ||
185 | } | ||
186 | } | ||
187 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
188 | pub struct RecordFieldDefList { | ||
189 | pub(crate) syntax: SyntaxNode, | ||
190 | } | ||
191 | impl std::fmt::Display for RecordFieldDefList { | ||
192 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
193 | std::fmt::Display::fmt(self.syntax(), f) | ||
194 | } | ||
195 | } | ||
196 | impl AstNode for RecordFieldDefList { | ||
197 | fn can_cast(kind: SyntaxKind) -> bool { | ||
198 | match kind { | ||
199 | RECORD_FIELD_DEF_LIST => true, | ||
200 | _ => false, | ||
201 | } | ||
202 | } | ||
203 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
204 | if Self::can_cast(syntax.kind()) { | ||
205 | Some(Self { syntax }) | ||
206 | } else { | ||
207 | None | ||
208 | } | ||
209 | } | ||
210 | fn syntax(&self) -> &SyntaxNode { | ||
211 | &self.syntax | ||
212 | } | ||
213 | } | ||
214 | impl RecordFieldDefList { | ||
215 | pub fn fields(&self) -> AstChildren<RecordFieldDef> { | ||
216 | AstChildren::new(&self.syntax) | ||
217 | } | ||
218 | } | ||
219 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
220 | pub struct RecordFieldDef { | ||
221 | pub(crate) syntax: SyntaxNode, | ||
222 | } | ||
223 | impl std::fmt::Display for RecordFieldDef { | ||
224 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
225 | std::fmt::Display::fmt(self.syntax(), f) | ||
226 | } | ||
227 | } | ||
228 | impl AstNode for RecordFieldDef { | ||
229 | fn can_cast(kind: SyntaxKind) -> bool { | ||
230 | match kind { | ||
231 | RECORD_FIELD_DEF => true, | ||
232 | _ => false, | ||
233 | } | ||
234 | } | ||
235 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
236 | if Self::can_cast(syntax.kind()) { | ||
237 | Some(Self { syntax }) | ||
238 | } else { | ||
239 | None | ||
240 | } | ||
241 | } | ||
242 | fn syntax(&self) -> &SyntaxNode { | ||
243 | &self.syntax | ||
244 | } | ||
245 | } | ||
246 | impl ast::VisibilityOwner for RecordFieldDef {} | ||
247 | impl ast::NameOwner for RecordFieldDef {} | ||
248 | impl ast::AttrsOwner for RecordFieldDef {} | ||
249 | impl ast::DocCommentsOwner for RecordFieldDef {} | ||
250 | impl ast::TypeAscriptionOwner for RecordFieldDef {} | ||
251 | impl RecordFieldDef {} | ||
252 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
253 | pub struct TupleFieldDefList { | ||
254 | pub(crate) syntax: SyntaxNode, | ||
255 | } | ||
256 | impl std::fmt::Display for TupleFieldDefList { | ||
257 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
258 | std::fmt::Display::fmt(self.syntax(), f) | ||
259 | } | ||
260 | } | ||
261 | impl AstNode for TupleFieldDefList { | ||
262 | fn can_cast(kind: SyntaxKind) -> bool { | ||
263 | match kind { | ||
264 | TUPLE_FIELD_DEF_LIST => true, | ||
265 | _ => false, | ||
266 | } | ||
267 | } | ||
268 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
269 | if Self::can_cast(syntax.kind()) { | ||
270 | Some(Self { syntax }) | ||
271 | } else { | ||
272 | None | ||
273 | } | ||
274 | } | ||
275 | fn syntax(&self) -> &SyntaxNode { | ||
276 | &self.syntax | ||
277 | } | ||
278 | } | ||
279 | impl TupleFieldDefList { | ||
280 | pub fn fields(&self) -> AstChildren<TupleFieldDef> { | ||
281 | AstChildren::new(&self.syntax) | ||
282 | } | ||
283 | } | ||
284 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
285 | pub struct TupleFieldDef { | ||
286 | pub(crate) syntax: SyntaxNode, | ||
287 | } | ||
288 | impl std::fmt::Display for TupleFieldDef { | ||
289 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
290 | std::fmt::Display::fmt(self.syntax(), f) | ||
291 | } | ||
292 | } | ||
293 | impl AstNode for TupleFieldDef { | ||
294 | fn can_cast(kind: SyntaxKind) -> bool { | ||
295 | match kind { | ||
296 | TUPLE_FIELD_DEF => true, | ||
297 | _ => false, | ||
298 | } | ||
299 | } | ||
300 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
301 | if Self::can_cast(syntax.kind()) { | ||
302 | Some(Self { syntax }) | ||
303 | } else { | ||
304 | None | ||
305 | } | ||
306 | } | ||
307 | fn syntax(&self) -> &SyntaxNode { | ||
308 | &self.syntax | ||
309 | } | ||
310 | } | ||
311 | impl ast::VisibilityOwner for TupleFieldDef {} | ||
312 | impl ast::AttrsOwner for TupleFieldDef {} | ||
313 | impl TupleFieldDef { | ||
314 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
315 | AstChildren::new(&self.syntax).next() | ||
316 | } | ||
317 | } | ||
318 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
319 | pub struct EnumDef { | ||
320 | pub(crate) syntax: SyntaxNode, | ||
321 | } | ||
322 | impl std::fmt::Display for EnumDef { | ||
323 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
324 | std::fmt::Display::fmt(self.syntax(), f) | ||
325 | } | ||
326 | } | ||
327 | impl AstNode for EnumDef { | ||
328 | fn can_cast(kind: SyntaxKind) -> bool { | ||
329 | match kind { | ||
330 | ENUM_DEF => true, | ||
331 | _ => false, | ||
332 | } | ||
333 | } | ||
334 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
335 | if Self::can_cast(syntax.kind()) { | ||
336 | Some(Self { syntax }) | ||
337 | } else { | ||
338 | None | ||
339 | } | ||
340 | } | ||
341 | fn syntax(&self) -> &SyntaxNode { | ||
342 | &self.syntax | ||
343 | } | ||
344 | } | ||
345 | impl ast::VisibilityOwner for EnumDef {} | ||
346 | impl ast::NameOwner for EnumDef {} | ||
347 | impl ast::TypeParamsOwner for EnumDef {} | ||
348 | impl ast::AttrsOwner for EnumDef {} | ||
349 | impl ast::DocCommentsOwner for EnumDef {} | ||
350 | impl EnumDef { | ||
351 | pub fn variant_list(&self) -> Option<EnumVariantList> { | ||
352 | AstChildren::new(&self.syntax).next() | ||
353 | } | ||
354 | } | ||
355 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
356 | pub struct EnumVariantList { | ||
357 | pub(crate) syntax: SyntaxNode, | ||
358 | } | ||
359 | impl std::fmt::Display for EnumVariantList { | ||
360 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
361 | std::fmt::Display::fmt(self.syntax(), f) | ||
362 | } | ||
363 | } | ||
364 | impl AstNode for EnumVariantList { | ||
365 | fn can_cast(kind: SyntaxKind) -> bool { | ||
366 | match kind { | ||
367 | ENUM_VARIANT_LIST => true, | ||
368 | _ => false, | ||
369 | } | ||
370 | } | ||
371 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
372 | if Self::can_cast(syntax.kind()) { | ||
373 | Some(Self { syntax }) | ||
374 | } else { | ||
375 | None | ||
376 | } | ||
377 | } | ||
378 | fn syntax(&self) -> &SyntaxNode { | ||
379 | &self.syntax | ||
380 | } | ||
381 | } | ||
382 | impl EnumVariantList { | ||
383 | pub fn variants(&self) -> AstChildren<EnumVariant> { | ||
384 | AstChildren::new(&self.syntax) | ||
385 | } | ||
386 | } | ||
387 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
388 | pub struct EnumVariant { | ||
389 | pub(crate) syntax: SyntaxNode, | ||
390 | } | ||
391 | impl std::fmt::Display for EnumVariant { | ||
392 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
393 | std::fmt::Display::fmt(self.syntax(), f) | ||
394 | } | ||
395 | } | ||
396 | impl AstNode for EnumVariant { | ||
397 | fn can_cast(kind: SyntaxKind) -> bool { | ||
398 | match kind { | ||
399 | ENUM_VARIANT => true, | ||
400 | _ => false, | ||
401 | } | ||
402 | } | ||
403 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
404 | if Self::can_cast(syntax.kind()) { | ||
405 | Some(Self { syntax }) | ||
406 | } else { | ||
407 | None | ||
408 | } | ||
409 | } | ||
410 | fn syntax(&self) -> &SyntaxNode { | ||
411 | &self.syntax | ||
412 | } | ||
413 | } | ||
414 | impl ast::NameOwner for EnumVariant {} | ||
415 | impl ast::DocCommentsOwner for EnumVariant {} | ||
416 | impl ast::AttrsOwner for EnumVariant {} | ||
417 | impl EnumVariant { | ||
418 | pub fn expr(&self) -> Option<Expr> { | ||
419 | AstChildren::new(&self.syntax).next() | ||
420 | } | ||
421 | } | ||
422 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
423 | pub struct TraitDef { | ||
424 | pub(crate) syntax: SyntaxNode, | ||
425 | } | ||
426 | impl std::fmt::Display for TraitDef { | ||
427 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
428 | std::fmt::Display::fmt(self.syntax(), f) | ||
429 | } | ||
430 | } | ||
431 | impl AstNode for TraitDef { | ||
432 | fn can_cast(kind: SyntaxKind) -> bool { | ||
433 | match kind { | ||
434 | TRAIT_DEF => true, | ||
435 | _ => false, | ||
436 | } | ||
437 | } | ||
438 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
439 | if Self::can_cast(syntax.kind()) { | ||
440 | Some(Self { syntax }) | ||
441 | } else { | ||
442 | None | ||
443 | } | ||
444 | } | ||
445 | fn syntax(&self) -> &SyntaxNode { | ||
446 | &self.syntax | ||
447 | } | ||
448 | } | ||
449 | impl ast::VisibilityOwner for TraitDef {} | ||
450 | impl ast::NameOwner for TraitDef {} | ||
451 | impl ast::AttrsOwner for TraitDef {} | ||
452 | impl ast::DocCommentsOwner for TraitDef {} | ||
453 | impl ast::TypeParamsOwner for TraitDef {} | ||
454 | impl ast::TypeBoundsOwner for TraitDef {} | ||
455 | impl TraitDef { | ||
456 | pub fn item_list(&self) -> Option<ItemList> { | ||
457 | AstChildren::new(&self.syntax).next() | ||
458 | } | ||
459 | } | ||
460 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
461 | pub struct Module { | ||
462 | pub(crate) syntax: SyntaxNode, | ||
463 | } | ||
464 | impl std::fmt::Display for Module { | ||
465 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
466 | std::fmt::Display::fmt(self.syntax(), f) | ||
467 | } | ||
468 | } | ||
469 | impl AstNode for Module { | ||
470 | fn can_cast(kind: SyntaxKind) -> bool { | ||
471 | match kind { | ||
472 | MODULE => true, | ||
473 | _ => false, | ||
474 | } | ||
475 | } | ||
476 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
477 | if Self::can_cast(syntax.kind()) { | ||
478 | Some(Self { syntax }) | ||
479 | } else { | ||
480 | None | ||
481 | } | ||
482 | } | ||
483 | fn syntax(&self) -> &SyntaxNode { | ||
484 | &self.syntax | ||
485 | } | ||
486 | } | ||
487 | impl ast::VisibilityOwner for Module {} | ||
488 | impl ast::NameOwner for Module {} | ||
489 | impl ast::AttrsOwner for Module {} | ||
490 | impl ast::DocCommentsOwner for Module {} | ||
491 | impl Module { | ||
492 | pub fn item_list(&self) -> Option<ItemList> { | ||
493 | AstChildren::new(&self.syntax).next() | ||
494 | } | ||
495 | } | ||
496 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
497 | pub struct ItemList { | ||
498 | pub(crate) syntax: SyntaxNode, | ||
499 | } | ||
500 | impl std::fmt::Display for ItemList { | ||
501 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
502 | std::fmt::Display::fmt(self.syntax(), f) | ||
503 | } | ||
504 | } | ||
505 | impl AstNode for ItemList { | ||
506 | fn can_cast(kind: SyntaxKind) -> bool { | ||
507 | match kind { | ||
508 | ITEM_LIST => true, | ||
509 | _ => false, | ||
510 | } | ||
511 | } | ||
512 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
513 | if Self::can_cast(syntax.kind()) { | ||
514 | Some(Self { syntax }) | ||
515 | } else { | ||
516 | None | ||
517 | } | ||
518 | } | ||
519 | fn syntax(&self) -> &SyntaxNode { | ||
520 | &self.syntax | ||
521 | } | ||
522 | } | ||
523 | impl ast::FnDefOwner for ItemList {} | ||
524 | impl ast::ModuleItemOwner for ItemList {} | ||
525 | impl ItemList { | ||
526 | pub fn impl_items(&self) -> AstChildren<ImplItem> { | ||
527 | AstChildren::new(&self.syntax) | ||
528 | } | ||
529 | } | ||
530 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
531 | pub struct ConstDef { | ||
532 | pub(crate) syntax: SyntaxNode, | ||
533 | } | ||
534 | impl std::fmt::Display for ConstDef { | ||
535 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
536 | std::fmt::Display::fmt(self.syntax(), f) | ||
537 | } | ||
538 | } | ||
539 | impl AstNode for ConstDef { | ||
540 | fn can_cast(kind: SyntaxKind) -> bool { | ||
541 | match kind { | ||
542 | CONST_DEF => true, | ||
543 | _ => false, | ||
544 | } | ||
545 | } | ||
546 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
547 | if Self::can_cast(syntax.kind()) { | ||
548 | Some(Self { syntax }) | ||
549 | } else { | ||
550 | None | ||
551 | } | ||
552 | } | ||
553 | fn syntax(&self) -> &SyntaxNode { | ||
554 | &self.syntax | ||
555 | } | ||
556 | } | ||
557 | impl ast::VisibilityOwner for ConstDef {} | ||
558 | impl ast::NameOwner for ConstDef {} | ||
559 | impl ast::TypeParamsOwner for ConstDef {} | ||
560 | impl ast::AttrsOwner for ConstDef {} | ||
561 | impl ast::DocCommentsOwner for ConstDef {} | ||
562 | impl ast::TypeAscriptionOwner for ConstDef {} | ||
563 | impl ConstDef { | ||
564 | pub fn body(&self) -> Option<Expr> { | ||
565 | AstChildren::new(&self.syntax).next() | ||
566 | } | ||
567 | } | ||
568 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
569 | pub struct StaticDef { | ||
570 | pub(crate) syntax: SyntaxNode, | ||
571 | } | ||
572 | impl std::fmt::Display for StaticDef { | ||
573 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
574 | std::fmt::Display::fmt(self.syntax(), f) | ||
575 | } | ||
576 | } | ||
577 | impl AstNode for StaticDef { | ||
578 | fn can_cast(kind: SyntaxKind) -> bool { | ||
579 | match kind { | ||
580 | STATIC_DEF => true, | ||
581 | _ => false, | ||
582 | } | ||
583 | } | ||
584 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
585 | if Self::can_cast(syntax.kind()) { | ||
586 | Some(Self { syntax }) | ||
587 | } else { | ||
588 | None | ||
589 | } | ||
590 | } | ||
591 | fn syntax(&self) -> &SyntaxNode { | ||
592 | &self.syntax | ||
593 | } | ||
594 | } | ||
595 | impl ast::VisibilityOwner for StaticDef {} | ||
596 | impl ast::NameOwner for StaticDef {} | ||
597 | impl ast::TypeParamsOwner for StaticDef {} | ||
598 | impl ast::AttrsOwner for StaticDef {} | ||
599 | impl ast::DocCommentsOwner for StaticDef {} | ||
600 | impl ast::TypeAscriptionOwner for StaticDef {} | ||
601 | impl StaticDef { | ||
602 | pub fn body(&self) -> Option<Expr> { | ||
603 | AstChildren::new(&self.syntax).next() | ||
604 | } | ||
605 | } | ||
606 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
607 | pub struct TypeAliasDef { | ||
608 | pub(crate) syntax: SyntaxNode, | ||
609 | } | ||
610 | impl std::fmt::Display for TypeAliasDef { | ||
611 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
612 | std::fmt::Display::fmt(self.syntax(), f) | ||
613 | } | ||
614 | } | ||
615 | impl AstNode for TypeAliasDef { | ||
616 | fn can_cast(kind: SyntaxKind) -> bool { | ||
617 | match kind { | ||
618 | TYPE_ALIAS_DEF => true, | ||
619 | _ => false, | ||
620 | } | ||
621 | } | ||
622 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
623 | if Self::can_cast(syntax.kind()) { | ||
624 | Some(Self { syntax }) | ||
625 | } else { | ||
626 | None | ||
627 | } | ||
628 | } | ||
629 | fn syntax(&self) -> &SyntaxNode { | ||
630 | &self.syntax | ||
631 | } | ||
632 | } | ||
633 | impl ast::VisibilityOwner for TypeAliasDef {} | ||
634 | impl ast::NameOwner for TypeAliasDef {} | ||
635 | impl ast::TypeParamsOwner for TypeAliasDef {} | ||
636 | impl ast::AttrsOwner for TypeAliasDef {} | ||
637 | impl ast::DocCommentsOwner for TypeAliasDef {} | ||
638 | impl ast::TypeBoundsOwner for TypeAliasDef {} | ||
639 | impl TypeAliasDef { | ||
640 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
641 | AstChildren::new(&self.syntax).next() | ||
642 | } | ||
643 | } | ||
644 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
645 | pub struct ImplDef { | ||
646 | pub(crate) syntax: SyntaxNode, | ||
647 | } | ||
648 | impl std::fmt::Display for ImplDef { | ||
649 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
650 | std::fmt::Display::fmt(self.syntax(), f) | ||
651 | } | ||
652 | } | ||
653 | impl AstNode for ImplDef { | ||
654 | fn can_cast(kind: SyntaxKind) -> bool { | ||
655 | match kind { | ||
656 | IMPL_DEF => true, | ||
657 | _ => false, | ||
658 | } | ||
659 | } | ||
660 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
661 | if Self::can_cast(syntax.kind()) { | ||
662 | Some(Self { syntax }) | ||
663 | } else { | ||
664 | None | ||
665 | } | ||
666 | } | ||
667 | fn syntax(&self) -> &SyntaxNode { | ||
668 | &self.syntax | ||
669 | } | ||
670 | } | ||
671 | impl ast::TypeParamsOwner for ImplDef {} | ||
672 | impl ast::AttrsOwner for ImplDef {} | ||
673 | impl ImplDef { | ||
674 | pub fn item_list(&self) -> Option<ItemList> { | ||
675 | AstChildren::new(&self.syntax).next() | ||
676 | } | ||
677 | } | ||
678 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
679 | pub struct ParenType { | ||
680 | pub(crate) syntax: SyntaxNode, | ||
681 | } | ||
682 | impl std::fmt::Display for ParenType { | ||
683 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
684 | std::fmt::Display::fmt(self.syntax(), f) | ||
685 | } | ||
686 | } | ||
687 | impl AstNode for ParenType { | ||
688 | fn can_cast(kind: SyntaxKind) -> bool { | ||
689 | match kind { | ||
690 | PAREN_TYPE => true, | ||
691 | _ => false, | ||
692 | } | ||
693 | } | ||
694 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
695 | if Self::can_cast(syntax.kind()) { | ||
696 | Some(Self { syntax }) | ||
697 | } else { | ||
698 | None | ||
699 | } | ||
700 | } | ||
701 | fn syntax(&self) -> &SyntaxNode { | ||
702 | &self.syntax | ||
703 | } | ||
704 | } | ||
705 | impl ParenType { | ||
706 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
707 | AstChildren::new(&self.syntax).next() | ||
708 | } | ||
709 | } | ||
710 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
711 | pub struct TupleType { | ||
712 | pub(crate) syntax: SyntaxNode, | ||
713 | } | ||
714 | impl std::fmt::Display for TupleType { | ||
715 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
716 | std::fmt::Display::fmt(self.syntax(), f) | ||
717 | } | ||
718 | } | ||
719 | impl AstNode for TupleType { | ||
720 | fn can_cast(kind: SyntaxKind) -> bool { | ||
721 | match kind { | ||
722 | TUPLE_TYPE => true, | ||
723 | _ => false, | ||
724 | } | ||
725 | } | ||
726 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
727 | if Self::can_cast(syntax.kind()) { | ||
728 | Some(Self { syntax }) | ||
729 | } else { | ||
730 | None | ||
731 | } | ||
732 | } | ||
733 | fn syntax(&self) -> &SyntaxNode { | ||
734 | &self.syntax | ||
735 | } | ||
736 | } | ||
737 | impl TupleType { | ||
738 | pub fn fields(&self) -> AstChildren<TypeRef> { | ||
739 | AstChildren::new(&self.syntax) | ||
740 | } | ||
741 | } | ||
742 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
743 | pub struct NeverType { | ||
744 | pub(crate) syntax: SyntaxNode, | ||
745 | } | ||
746 | impl std::fmt::Display for NeverType { | ||
747 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
748 | std::fmt::Display::fmt(self.syntax(), f) | ||
749 | } | ||
750 | } | ||
751 | impl AstNode for NeverType { | ||
752 | fn can_cast(kind: SyntaxKind) -> bool { | ||
753 | match kind { | ||
754 | NEVER_TYPE => true, | ||
755 | _ => false, | ||
756 | } | ||
757 | } | ||
758 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
759 | if Self::can_cast(syntax.kind()) { | ||
760 | Some(Self { syntax }) | ||
761 | } else { | ||
762 | None | ||
763 | } | ||
764 | } | ||
765 | fn syntax(&self) -> &SyntaxNode { | ||
766 | &self.syntax | ||
767 | } | ||
768 | } | ||
769 | impl NeverType {} | ||
770 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
771 | pub struct PathType { | ||
772 | pub(crate) syntax: SyntaxNode, | ||
773 | } | ||
774 | impl std::fmt::Display for PathType { | ||
775 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
776 | std::fmt::Display::fmt(self.syntax(), f) | ||
777 | } | ||
778 | } | ||
779 | impl AstNode for PathType { | ||
780 | fn can_cast(kind: SyntaxKind) -> bool { | ||
781 | match kind { | ||
782 | PATH_TYPE => true, | ||
783 | _ => false, | ||
784 | } | ||
785 | } | ||
786 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
787 | if Self::can_cast(syntax.kind()) { | ||
788 | Some(Self { syntax }) | ||
789 | } else { | ||
790 | None | ||
791 | } | ||
792 | } | ||
793 | fn syntax(&self) -> &SyntaxNode { | ||
794 | &self.syntax | ||
795 | } | ||
796 | } | ||
797 | impl PathType { | ||
798 | pub fn path(&self) -> Option<Path> { | ||
799 | AstChildren::new(&self.syntax).next() | ||
800 | } | ||
801 | } | ||
802 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
803 | pub struct PointerType { | ||
804 | pub(crate) syntax: SyntaxNode, | ||
805 | } | ||
806 | impl std::fmt::Display for PointerType { | ||
807 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
808 | std::fmt::Display::fmt(self.syntax(), f) | ||
809 | } | ||
810 | } | ||
811 | impl AstNode for PointerType { | ||
812 | fn can_cast(kind: SyntaxKind) -> bool { | ||
813 | match kind { | ||
814 | POINTER_TYPE => true, | ||
815 | _ => false, | ||
816 | } | ||
817 | } | ||
818 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
819 | if Self::can_cast(syntax.kind()) { | ||
820 | Some(Self { syntax }) | ||
821 | } else { | ||
822 | None | ||
823 | } | ||
824 | } | ||
825 | fn syntax(&self) -> &SyntaxNode { | ||
826 | &self.syntax | ||
827 | } | ||
828 | } | ||
829 | impl PointerType { | ||
830 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
831 | AstChildren::new(&self.syntax).next() | ||
832 | } | ||
833 | } | ||
834 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
835 | pub struct ArrayType { | ||
836 | pub(crate) syntax: SyntaxNode, | ||
837 | } | ||
838 | impl std::fmt::Display for ArrayType { | ||
839 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
840 | std::fmt::Display::fmt(self.syntax(), f) | ||
841 | } | ||
842 | } | ||
843 | impl AstNode for ArrayType { | ||
844 | fn can_cast(kind: SyntaxKind) -> bool { | ||
845 | match kind { | ||
846 | ARRAY_TYPE => true, | ||
847 | _ => false, | ||
848 | } | ||
849 | } | ||
850 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
851 | if Self::can_cast(syntax.kind()) { | ||
852 | Some(Self { syntax }) | ||
853 | } else { | ||
854 | None | ||
855 | } | ||
856 | } | ||
857 | fn syntax(&self) -> &SyntaxNode { | ||
858 | &self.syntax | ||
859 | } | ||
860 | } | ||
861 | impl ArrayType { | ||
862 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
863 | AstChildren::new(&self.syntax).next() | ||
864 | } | ||
865 | pub fn expr(&self) -> Option<Expr> { | ||
866 | AstChildren::new(&self.syntax).next() | ||
867 | } | ||
868 | } | ||
869 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
870 | pub struct SliceType { | ||
871 | pub(crate) syntax: SyntaxNode, | ||
872 | } | ||
873 | impl std::fmt::Display for SliceType { | ||
874 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
875 | std::fmt::Display::fmt(self.syntax(), f) | ||
876 | } | ||
877 | } | ||
878 | impl AstNode for SliceType { | ||
879 | fn can_cast(kind: SyntaxKind) -> bool { | ||
880 | match kind { | ||
881 | SLICE_TYPE => true, | ||
882 | _ => false, | ||
883 | } | ||
884 | } | ||
885 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
886 | if Self::can_cast(syntax.kind()) { | ||
887 | Some(Self { syntax }) | ||
888 | } else { | ||
889 | None | ||
890 | } | ||
891 | } | ||
892 | fn syntax(&self) -> &SyntaxNode { | ||
893 | &self.syntax | ||
894 | } | ||
895 | } | ||
896 | impl SliceType { | ||
897 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
898 | AstChildren::new(&self.syntax).next() | ||
899 | } | ||
900 | } | ||
901 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
902 | pub struct ReferenceType { | ||
903 | pub(crate) syntax: SyntaxNode, | ||
904 | } | ||
905 | impl std::fmt::Display for ReferenceType { | ||
906 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
907 | std::fmt::Display::fmt(self.syntax(), f) | ||
908 | } | ||
909 | } | ||
910 | impl AstNode for ReferenceType { | ||
911 | fn can_cast(kind: SyntaxKind) -> bool { | ||
912 | match kind { | ||
913 | REFERENCE_TYPE => true, | ||
914 | _ => false, | ||
915 | } | ||
916 | } | ||
917 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
918 | if Self::can_cast(syntax.kind()) { | ||
919 | Some(Self { syntax }) | ||
920 | } else { | ||
921 | None | ||
922 | } | ||
923 | } | ||
924 | fn syntax(&self) -> &SyntaxNode { | ||
925 | &self.syntax | ||
926 | } | ||
927 | } | ||
928 | impl ReferenceType { | ||
929 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
930 | AstChildren::new(&self.syntax).next() | ||
931 | } | ||
932 | } | ||
933 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
934 | pub struct PlaceholderType { | ||
935 | pub(crate) syntax: SyntaxNode, | ||
936 | } | ||
937 | impl std::fmt::Display for PlaceholderType { | ||
938 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
939 | std::fmt::Display::fmt(self.syntax(), f) | ||
940 | } | ||
941 | } | ||
942 | impl AstNode for PlaceholderType { | ||
943 | fn can_cast(kind: SyntaxKind) -> bool { | ||
944 | match kind { | ||
945 | PLACEHOLDER_TYPE => true, | ||
946 | _ => false, | ||
947 | } | ||
948 | } | ||
949 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
950 | if Self::can_cast(syntax.kind()) { | ||
951 | Some(Self { syntax }) | ||
952 | } else { | ||
953 | None | ||
954 | } | ||
955 | } | ||
956 | fn syntax(&self) -> &SyntaxNode { | ||
957 | &self.syntax | ||
958 | } | ||
959 | } | ||
960 | impl PlaceholderType {} | ||
961 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
962 | pub struct FnPointerType { | ||
963 | pub(crate) syntax: SyntaxNode, | ||
964 | } | ||
965 | impl std::fmt::Display for FnPointerType { | ||
966 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
967 | std::fmt::Display::fmt(self.syntax(), f) | ||
968 | } | ||
969 | } | ||
970 | impl AstNode for FnPointerType { | ||
971 | fn can_cast(kind: SyntaxKind) -> bool { | ||
972 | match kind { | ||
973 | FN_POINTER_TYPE => true, | ||
974 | _ => false, | ||
975 | } | ||
976 | } | ||
977 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
978 | if Self::can_cast(syntax.kind()) { | ||
979 | Some(Self { syntax }) | ||
980 | } else { | ||
981 | None | ||
982 | } | ||
983 | } | ||
984 | fn syntax(&self) -> &SyntaxNode { | ||
985 | &self.syntax | ||
986 | } | ||
987 | } | ||
988 | impl FnPointerType { | ||
989 | pub fn param_list(&self) -> Option<ParamList> { | ||
990 | AstChildren::new(&self.syntax).next() | ||
991 | } | ||
992 | pub fn ret_type(&self) -> Option<RetType> { | ||
993 | AstChildren::new(&self.syntax).next() | ||
994 | } | ||
995 | } | ||
996 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
997 | pub struct ForType { | ||
998 | pub(crate) syntax: SyntaxNode, | ||
999 | } | ||
1000 | impl std::fmt::Display for ForType { | ||
1001 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1002 | std::fmt::Display::fmt(self.syntax(), f) | ||
1003 | } | ||
1004 | } | ||
1005 | impl AstNode for ForType { | ||
1006 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1007 | match kind { | ||
1008 | FOR_TYPE => true, | ||
1009 | _ => false, | ||
1010 | } | ||
1011 | } | ||
1012 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1013 | if Self::can_cast(syntax.kind()) { | ||
1014 | Some(Self { syntax }) | ||
1015 | } else { | ||
1016 | None | ||
1017 | } | ||
1018 | } | ||
1019 | fn syntax(&self) -> &SyntaxNode { | ||
1020 | &self.syntax | ||
1021 | } | ||
1022 | } | ||
1023 | impl ForType { | ||
1024 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
1025 | AstChildren::new(&self.syntax).next() | ||
1026 | } | ||
1027 | } | ||
1028 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1029 | pub struct ImplTraitType { | ||
1030 | pub(crate) syntax: SyntaxNode, | ||
1031 | } | ||
1032 | impl std::fmt::Display for ImplTraitType { | ||
1033 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1034 | std::fmt::Display::fmt(self.syntax(), f) | ||
1035 | } | ||
1036 | } | ||
1037 | impl AstNode for ImplTraitType { | ||
1038 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1039 | match kind { | ||
1040 | IMPL_TRAIT_TYPE => true, | ||
1041 | _ => false, | ||
1042 | } | ||
1043 | } | ||
1044 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1045 | if Self::can_cast(syntax.kind()) { | ||
1046 | Some(Self { syntax }) | ||
1047 | } else { | ||
1048 | None | ||
1049 | } | ||
1050 | } | ||
1051 | fn syntax(&self) -> &SyntaxNode { | ||
1052 | &self.syntax | ||
1053 | } | ||
1054 | } | ||
1055 | impl ast::TypeBoundsOwner for ImplTraitType {} | ||
1056 | impl ImplTraitType {} | ||
1057 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1058 | pub struct DynTraitType { | ||
1059 | pub(crate) syntax: SyntaxNode, | ||
1060 | } | ||
1061 | impl std::fmt::Display for DynTraitType { | ||
1062 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1063 | std::fmt::Display::fmt(self.syntax(), f) | ||
1064 | } | ||
1065 | } | ||
1066 | impl AstNode for DynTraitType { | ||
1067 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1068 | match kind { | ||
1069 | DYN_TRAIT_TYPE => true, | ||
1070 | _ => false, | ||
1071 | } | ||
1072 | } | ||
1073 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1074 | if Self::can_cast(syntax.kind()) { | ||
1075 | Some(Self { syntax }) | ||
1076 | } else { | ||
1077 | None | ||
1078 | } | ||
1079 | } | ||
1080 | fn syntax(&self) -> &SyntaxNode { | ||
1081 | &self.syntax | ||
1082 | } | ||
1083 | } | ||
1084 | impl ast::TypeBoundsOwner for DynTraitType {} | ||
1085 | impl DynTraitType {} | ||
1086 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1087 | pub struct TupleExpr { | ||
1088 | pub(crate) syntax: SyntaxNode, | ||
1089 | } | ||
1090 | impl std::fmt::Display for TupleExpr { | ||
1091 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1092 | std::fmt::Display::fmt(self.syntax(), f) | ||
1093 | } | ||
1094 | } | ||
1095 | impl AstNode for TupleExpr { | ||
1096 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1097 | match kind { | ||
1098 | TUPLE_EXPR => true, | ||
1099 | _ => false, | ||
1100 | } | ||
1101 | } | ||
1102 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1103 | if Self::can_cast(syntax.kind()) { | ||
1104 | Some(Self { syntax }) | ||
1105 | } else { | ||
1106 | None | ||
1107 | } | ||
1108 | } | ||
1109 | fn syntax(&self) -> &SyntaxNode { | ||
1110 | &self.syntax | ||
1111 | } | ||
1112 | } | ||
1113 | impl TupleExpr { | ||
1114 | pub fn exprs(&self) -> AstChildren<Expr> { | ||
1115 | AstChildren::new(&self.syntax) | ||
1116 | } | ||
1117 | } | ||
1118 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1119 | pub struct ArrayExpr { | ||
1120 | pub(crate) syntax: SyntaxNode, | ||
1121 | } | ||
1122 | impl std::fmt::Display for ArrayExpr { | ||
1123 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1124 | std::fmt::Display::fmt(self.syntax(), f) | ||
1125 | } | ||
1126 | } | ||
1127 | impl AstNode for ArrayExpr { | ||
1128 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1129 | match kind { | ||
1130 | ARRAY_EXPR => true, | ||
1131 | _ => false, | ||
1132 | } | ||
1133 | } | ||
1134 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1135 | if Self::can_cast(syntax.kind()) { | ||
1136 | Some(Self { syntax }) | ||
1137 | } else { | ||
1138 | None | ||
1139 | } | ||
1140 | } | ||
1141 | fn syntax(&self) -> &SyntaxNode { | ||
1142 | &self.syntax | ||
1143 | } | ||
1144 | } | ||
1145 | impl ArrayExpr { | ||
1146 | pub fn exprs(&self) -> AstChildren<Expr> { | ||
1147 | AstChildren::new(&self.syntax) | ||
1148 | } | ||
1149 | } | ||
1150 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1151 | pub struct ParenExpr { | ||
1152 | pub(crate) syntax: SyntaxNode, | ||
1153 | } | ||
1154 | impl std::fmt::Display for ParenExpr { | ||
1155 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1156 | std::fmt::Display::fmt(self.syntax(), f) | ||
1157 | } | ||
1158 | } | ||
1159 | impl AstNode for ParenExpr { | ||
1160 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1161 | match kind { | ||
1162 | PAREN_EXPR => true, | ||
1163 | _ => false, | ||
1164 | } | ||
1165 | } | ||
1166 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1167 | if Self::can_cast(syntax.kind()) { | ||
1168 | Some(Self { syntax }) | ||
1169 | } else { | ||
1170 | None | ||
1171 | } | ||
1172 | } | ||
1173 | fn syntax(&self) -> &SyntaxNode { | ||
1174 | &self.syntax | ||
1175 | } | ||
1176 | } | ||
1177 | impl ParenExpr { | ||
1178 | pub fn expr(&self) -> Option<Expr> { | ||
1179 | AstChildren::new(&self.syntax).next() | ||
1180 | } | ||
1181 | } | ||
1182 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1183 | pub struct PathExpr { | ||
1184 | pub(crate) syntax: SyntaxNode, | ||
1185 | } | ||
1186 | impl std::fmt::Display for PathExpr { | ||
1187 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1188 | std::fmt::Display::fmt(self.syntax(), f) | ||
1189 | } | ||
1190 | } | ||
1191 | impl AstNode for PathExpr { | ||
1192 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1193 | match kind { | ||
1194 | PATH_EXPR => true, | ||
1195 | _ => false, | ||
1196 | } | ||
1197 | } | ||
1198 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1199 | if Self::can_cast(syntax.kind()) { | ||
1200 | Some(Self { syntax }) | ||
1201 | } else { | ||
1202 | None | ||
1203 | } | ||
1204 | } | ||
1205 | fn syntax(&self) -> &SyntaxNode { | ||
1206 | &self.syntax | ||
1207 | } | ||
1208 | } | ||
1209 | impl PathExpr { | ||
1210 | pub fn path(&self) -> Option<Path> { | ||
1211 | AstChildren::new(&self.syntax).next() | ||
1212 | } | ||
1213 | } | ||
1214 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1215 | pub struct LambdaExpr { | ||
1216 | pub(crate) syntax: SyntaxNode, | ||
1217 | } | ||
1218 | impl std::fmt::Display for LambdaExpr { | ||
1219 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1220 | std::fmt::Display::fmt(self.syntax(), f) | ||
1221 | } | ||
1222 | } | ||
1223 | impl AstNode for LambdaExpr { | ||
1224 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1225 | match kind { | ||
1226 | LAMBDA_EXPR => true, | ||
1227 | _ => false, | ||
1228 | } | ||
1229 | } | ||
1230 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1231 | if Self::can_cast(syntax.kind()) { | ||
1232 | Some(Self { syntax }) | ||
1233 | } else { | ||
1234 | None | ||
1235 | } | ||
1236 | } | ||
1237 | fn syntax(&self) -> &SyntaxNode { | ||
1238 | &self.syntax | ||
1239 | } | ||
1240 | } | ||
1241 | impl LambdaExpr { | ||
1242 | pub fn param_list(&self) -> Option<ParamList> { | ||
1243 | AstChildren::new(&self.syntax).next() | ||
1244 | } | ||
1245 | pub fn ret_type(&self) -> Option<RetType> { | ||
1246 | AstChildren::new(&self.syntax).next() | ||
1247 | } | ||
1248 | pub fn body(&self) -> Option<Expr> { | ||
1249 | AstChildren::new(&self.syntax).next() | ||
1250 | } | ||
1251 | } | ||
1252 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1253 | pub struct IfExpr { | ||
1254 | pub(crate) syntax: SyntaxNode, | ||
1255 | } | ||
1256 | impl std::fmt::Display for IfExpr { | ||
1257 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1258 | std::fmt::Display::fmt(self.syntax(), f) | ||
1259 | } | ||
1260 | } | ||
1261 | impl AstNode for IfExpr { | ||
1262 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1263 | match kind { | ||
1264 | IF_EXPR => true, | ||
1265 | _ => false, | ||
1266 | } | ||
1267 | } | ||
1268 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1269 | if Self::can_cast(syntax.kind()) { | ||
1270 | Some(Self { syntax }) | ||
1271 | } else { | ||
1272 | None | ||
1273 | } | ||
1274 | } | ||
1275 | fn syntax(&self) -> &SyntaxNode { | ||
1276 | &self.syntax | ||
1277 | } | ||
1278 | } | ||
1279 | impl IfExpr { | ||
1280 | pub fn condition(&self) -> Option<Condition> { | ||
1281 | AstChildren::new(&self.syntax).next() | ||
1282 | } | ||
1283 | } | ||
1284 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1285 | pub struct LoopExpr { | ||
1286 | pub(crate) syntax: SyntaxNode, | ||
1287 | } | ||
1288 | impl std::fmt::Display for LoopExpr { | ||
1289 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1290 | std::fmt::Display::fmt(self.syntax(), f) | ||
1291 | } | ||
1292 | } | ||
1293 | impl AstNode for LoopExpr { | ||
1294 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1295 | match kind { | ||
1296 | LOOP_EXPR => true, | ||
1297 | _ => false, | ||
1298 | } | ||
1299 | } | ||
1300 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1301 | if Self::can_cast(syntax.kind()) { | ||
1302 | Some(Self { syntax }) | ||
1303 | } else { | ||
1304 | None | ||
1305 | } | ||
1306 | } | ||
1307 | fn syntax(&self) -> &SyntaxNode { | ||
1308 | &self.syntax | ||
1309 | } | ||
1310 | } | ||
1311 | impl ast::LoopBodyOwner for LoopExpr {} | ||
1312 | impl LoopExpr {} | ||
1313 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1314 | pub struct TryBlockExpr { | ||
1315 | pub(crate) syntax: SyntaxNode, | ||
1316 | } | ||
1317 | impl std::fmt::Display for TryBlockExpr { | ||
1318 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1319 | std::fmt::Display::fmt(self.syntax(), f) | ||
1320 | } | ||
1321 | } | ||
1322 | impl AstNode for TryBlockExpr { | ||
1323 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1324 | match kind { | ||
1325 | TRY_BLOCK_EXPR => true, | ||
1326 | _ => false, | ||
1327 | } | ||
1328 | } | ||
1329 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1330 | if Self::can_cast(syntax.kind()) { | ||
1331 | Some(Self { syntax }) | ||
1332 | } else { | ||
1333 | None | ||
1334 | } | ||
1335 | } | ||
1336 | fn syntax(&self) -> &SyntaxNode { | ||
1337 | &self.syntax | ||
1338 | } | ||
1339 | } | ||
1340 | impl TryBlockExpr { | ||
1341 | pub fn body(&self) -> Option<BlockExpr> { | ||
1342 | AstChildren::new(&self.syntax).next() | ||
1343 | } | ||
1344 | } | ||
1345 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1346 | pub struct ForExpr { | ||
1347 | pub(crate) syntax: SyntaxNode, | ||
1348 | } | ||
1349 | impl std::fmt::Display for ForExpr { | ||
1350 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1351 | std::fmt::Display::fmt(self.syntax(), f) | ||
1352 | } | ||
1353 | } | ||
1354 | impl AstNode for ForExpr { | ||
1355 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1356 | match kind { | ||
1357 | FOR_EXPR => true, | ||
1358 | _ => false, | ||
1359 | } | ||
1360 | } | ||
1361 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1362 | if Self::can_cast(syntax.kind()) { | ||
1363 | Some(Self { syntax }) | ||
1364 | } else { | ||
1365 | None | ||
1366 | } | ||
1367 | } | ||
1368 | fn syntax(&self) -> &SyntaxNode { | ||
1369 | &self.syntax | ||
1370 | } | ||
1371 | } | ||
1372 | impl ast::LoopBodyOwner for ForExpr {} | ||
1373 | impl ForExpr { | ||
1374 | pub fn pat(&self) -> Option<Pat> { | ||
1375 | AstChildren::new(&self.syntax).next() | ||
1376 | } | ||
1377 | pub fn iterable(&self) -> Option<Expr> { | ||
1378 | AstChildren::new(&self.syntax).next() | ||
1379 | } | ||
1380 | } | ||
1381 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1382 | pub struct WhileExpr { | ||
1383 | pub(crate) syntax: SyntaxNode, | ||
1384 | } | ||
1385 | impl std::fmt::Display for WhileExpr { | ||
1386 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1387 | std::fmt::Display::fmt(self.syntax(), f) | ||
1388 | } | ||
1389 | } | ||
1390 | impl AstNode for WhileExpr { | ||
1391 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1392 | match kind { | ||
1393 | WHILE_EXPR => true, | ||
1394 | _ => false, | ||
1395 | } | ||
1396 | } | ||
1397 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1398 | if Self::can_cast(syntax.kind()) { | ||
1399 | Some(Self { syntax }) | ||
1400 | } else { | ||
1401 | None | ||
1402 | } | ||
1403 | } | ||
1404 | fn syntax(&self) -> &SyntaxNode { | ||
1405 | &self.syntax | ||
1406 | } | ||
1407 | } | ||
1408 | impl ast::LoopBodyOwner for WhileExpr {} | ||
1409 | impl WhileExpr { | ||
1410 | pub fn condition(&self) -> Option<Condition> { | ||
1411 | AstChildren::new(&self.syntax).next() | ||
1412 | } | ||
1413 | } | ||
1414 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1415 | pub struct ContinueExpr { | ||
1416 | pub(crate) syntax: SyntaxNode, | ||
1417 | } | ||
1418 | impl std::fmt::Display for ContinueExpr { | ||
1419 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1420 | std::fmt::Display::fmt(self.syntax(), f) | ||
1421 | } | ||
1422 | } | ||
1423 | impl AstNode for ContinueExpr { | ||
1424 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1425 | match kind { | ||
1426 | CONTINUE_EXPR => true, | ||
1427 | _ => false, | ||
1428 | } | ||
1429 | } | ||
1430 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1431 | if Self::can_cast(syntax.kind()) { | ||
1432 | Some(Self { syntax }) | ||
1433 | } else { | ||
1434 | None | ||
1435 | } | ||
1436 | } | ||
1437 | fn syntax(&self) -> &SyntaxNode { | ||
1438 | &self.syntax | ||
1439 | } | ||
1440 | } | ||
1441 | impl ContinueExpr {} | ||
1442 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1443 | pub struct BreakExpr { | ||
1444 | pub(crate) syntax: SyntaxNode, | ||
1445 | } | ||
1446 | impl std::fmt::Display for BreakExpr { | ||
1447 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1448 | std::fmt::Display::fmt(self.syntax(), f) | ||
1449 | } | ||
1450 | } | ||
1451 | impl AstNode for BreakExpr { | ||
1452 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1453 | match kind { | ||
1454 | BREAK_EXPR => true, | ||
1455 | _ => false, | ||
1456 | } | ||
1457 | } | ||
1458 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1459 | if Self::can_cast(syntax.kind()) { | ||
1460 | Some(Self { syntax }) | ||
1461 | } else { | ||
1462 | None | ||
1463 | } | ||
1464 | } | ||
1465 | fn syntax(&self) -> &SyntaxNode { | ||
1466 | &self.syntax | ||
1467 | } | ||
1468 | } | ||
1469 | impl BreakExpr { | ||
1470 | pub fn expr(&self) -> Option<Expr> { | ||
1471 | AstChildren::new(&self.syntax).next() | ||
1472 | } | ||
1473 | } | ||
1474 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1475 | pub struct Label { | ||
1476 | pub(crate) syntax: SyntaxNode, | ||
1477 | } | ||
1478 | impl std::fmt::Display for Label { | ||
1479 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1480 | std::fmt::Display::fmt(self.syntax(), f) | ||
1481 | } | ||
1482 | } | ||
1483 | impl AstNode for Label { | ||
1484 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1485 | match kind { | ||
1486 | LABEL => true, | ||
1487 | _ => false, | ||
1488 | } | ||
1489 | } | ||
1490 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1491 | if Self::can_cast(syntax.kind()) { | ||
1492 | Some(Self { syntax }) | ||
1493 | } else { | ||
1494 | None | ||
1495 | } | ||
1496 | } | ||
1497 | fn syntax(&self) -> &SyntaxNode { | ||
1498 | &self.syntax | ||
1499 | } | ||
1500 | } | ||
1501 | impl Label {} | ||
1502 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1503 | pub struct BlockExpr { | ||
1504 | pub(crate) syntax: SyntaxNode, | ||
1505 | } | ||
1506 | impl std::fmt::Display for BlockExpr { | ||
1507 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1508 | std::fmt::Display::fmt(self.syntax(), f) | ||
1509 | } | ||
1510 | } | ||
1511 | impl AstNode for BlockExpr { | ||
1512 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1513 | match kind { | ||
1514 | BLOCK_EXPR => true, | ||
1515 | _ => false, | ||
1516 | } | ||
1517 | } | ||
1518 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1519 | if Self::can_cast(syntax.kind()) { | ||
1520 | Some(Self { syntax }) | ||
1521 | } else { | ||
1522 | None | ||
1523 | } | ||
1524 | } | ||
1525 | fn syntax(&self) -> &SyntaxNode { | ||
1526 | &self.syntax | ||
1527 | } | ||
1528 | } | ||
1529 | impl BlockExpr { | ||
1530 | pub fn block(&self) -> Option<Block> { | ||
1531 | AstChildren::new(&self.syntax).next() | ||
1532 | } | ||
1533 | } | ||
1534 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1535 | pub struct ReturnExpr { | ||
1536 | pub(crate) syntax: SyntaxNode, | ||
1537 | } | ||
1538 | impl std::fmt::Display for ReturnExpr { | ||
1539 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1540 | std::fmt::Display::fmt(self.syntax(), f) | ||
1541 | } | ||
1542 | } | ||
1543 | impl AstNode for ReturnExpr { | ||
1544 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1545 | match kind { | ||
1546 | RETURN_EXPR => true, | ||
1547 | _ => false, | ||
1548 | } | ||
1549 | } | ||
1550 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1551 | if Self::can_cast(syntax.kind()) { | ||
1552 | Some(Self { syntax }) | ||
1553 | } else { | ||
1554 | None | ||
1555 | } | ||
1556 | } | ||
1557 | fn syntax(&self) -> &SyntaxNode { | ||
1558 | &self.syntax | ||
1559 | } | ||
1560 | } | ||
1561 | impl ReturnExpr { | ||
1562 | pub fn expr(&self) -> Option<Expr> { | ||
1563 | AstChildren::new(&self.syntax).next() | ||
1564 | } | ||
1565 | } | ||
1566 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1567 | pub struct CallExpr { | ||
1568 | pub(crate) syntax: SyntaxNode, | ||
1569 | } | ||
1570 | impl std::fmt::Display for CallExpr { | ||
1571 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1572 | std::fmt::Display::fmt(self.syntax(), f) | ||
1573 | } | ||
1574 | } | ||
1575 | impl AstNode for CallExpr { | ||
1576 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1577 | match kind { | ||
1578 | CALL_EXPR => true, | ||
1579 | _ => false, | ||
1580 | } | ||
1581 | } | ||
1582 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1583 | if Self::can_cast(syntax.kind()) { | ||
1584 | Some(Self { syntax }) | ||
1585 | } else { | ||
1586 | None | ||
1587 | } | ||
1588 | } | ||
1589 | fn syntax(&self) -> &SyntaxNode { | ||
1590 | &self.syntax | ||
1591 | } | ||
1592 | } | ||
1593 | impl ast::ArgListOwner for CallExpr {} | ||
1594 | impl CallExpr { | ||
1595 | pub fn expr(&self) -> Option<Expr> { | ||
1596 | AstChildren::new(&self.syntax).next() | ||
1597 | } | ||
1598 | } | ||
1599 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1600 | pub struct MethodCallExpr { | ||
1601 | pub(crate) syntax: SyntaxNode, | ||
1602 | } | ||
1603 | impl std::fmt::Display for MethodCallExpr { | ||
1604 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1605 | std::fmt::Display::fmt(self.syntax(), f) | ||
1606 | } | ||
1607 | } | ||
1608 | impl AstNode for MethodCallExpr { | ||
1609 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1610 | match kind { | ||
1611 | METHOD_CALL_EXPR => true, | ||
1612 | _ => false, | ||
1613 | } | ||
1614 | } | ||
1615 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1616 | if Self::can_cast(syntax.kind()) { | ||
1617 | Some(Self { syntax }) | ||
1618 | } else { | ||
1619 | None | ||
1620 | } | ||
1621 | } | ||
1622 | fn syntax(&self) -> &SyntaxNode { | ||
1623 | &self.syntax | ||
1624 | } | ||
1625 | } | ||
1626 | impl ast::ArgListOwner for MethodCallExpr {} | ||
1627 | impl MethodCallExpr { | ||
1628 | pub fn expr(&self) -> Option<Expr> { | ||
1629 | AstChildren::new(&self.syntax).next() | ||
1630 | } | ||
1631 | pub fn name_ref(&self) -> Option<NameRef> { | ||
1632 | AstChildren::new(&self.syntax).next() | ||
1633 | } | ||
1634 | pub fn type_arg_list(&self) -> Option<TypeArgList> { | ||
1635 | AstChildren::new(&self.syntax).next() | ||
1636 | } | ||
1637 | } | ||
1638 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1639 | pub struct IndexExpr { | ||
1640 | pub(crate) syntax: SyntaxNode, | ||
1641 | } | ||
1642 | impl std::fmt::Display for IndexExpr { | ||
1643 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1644 | std::fmt::Display::fmt(self.syntax(), f) | ||
1645 | } | ||
1646 | } | ||
1647 | impl AstNode for IndexExpr { | ||
1648 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1649 | match kind { | ||
1650 | INDEX_EXPR => true, | ||
1651 | _ => false, | ||
1652 | } | ||
1653 | } | ||
1654 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1655 | if Self::can_cast(syntax.kind()) { | ||
1656 | Some(Self { syntax }) | ||
1657 | } else { | ||
1658 | None | ||
1659 | } | ||
1660 | } | ||
1661 | fn syntax(&self) -> &SyntaxNode { | ||
1662 | &self.syntax | ||
1663 | } | ||
1664 | } | ||
1665 | impl IndexExpr {} | ||
1666 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1667 | pub struct FieldExpr { | ||
1668 | pub(crate) syntax: SyntaxNode, | ||
1669 | } | ||
1670 | impl std::fmt::Display for FieldExpr { | ||
1671 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1672 | std::fmt::Display::fmt(self.syntax(), f) | ||
1673 | } | ||
1674 | } | ||
1675 | impl AstNode for FieldExpr { | ||
1676 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1677 | match kind { | ||
1678 | FIELD_EXPR => true, | ||
1679 | _ => false, | ||
1680 | } | ||
1681 | } | ||
1682 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1683 | if Self::can_cast(syntax.kind()) { | ||
1684 | Some(Self { syntax }) | ||
1685 | } else { | ||
1686 | None | ||
1687 | } | ||
1688 | } | ||
1689 | fn syntax(&self) -> &SyntaxNode { | ||
1690 | &self.syntax | ||
1691 | } | ||
1692 | } | ||
1693 | impl FieldExpr { | ||
1694 | pub fn expr(&self) -> Option<Expr> { | ||
1695 | AstChildren::new(&self.syntax).next() | ||
1696 | } | ||
1697 | pub fn name_ref(&self) -> Option<NameRef> { | ||
1698 | AstChildren::new(&self.syntax).next() | ||
1699 | } | ||
1700 | } | ||
1701 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1702 | pub struct AwaitExpr { | ||
1703 | pub(crate) syntax: SyntaxNode, | ||
1704 | } | ||
1705 | impl std::fmt::Display for AwaitExpr { | ||
1706 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1707 | std::fmt::Display::fmt(self.syntax(), f) | ||
1708 | } | ||
1709 | } | ||
1710 | impl AstNode for AwaitExpr { | ||
1711 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1712 | match kind { | ||
1713 | AWAIT_EXPR => true, | ||
1714 | _ => false, | ||
1715 | } | ||
1716 | } | ||
1717 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1718 | if Self::can_cast(syntax.kind()) { | ||
1719 | Some(Self { syntax }) | ||
1720 | } else { | ||
1721 | None | ||
1722 | } | ||
1723 | } | ||
1724 | fn syntax(&self) -> &SyntaxNode { | ||
1725 | &self.syntax | ||
1726 | } | ||
1727 | } | ||
1728 | impl AwaitExpr { | ||
1729 | pub fn expr(&self) -> Option<Expr> { | ||
1730 | AstChildren::new(&self.syntax).next() | ||
1731 | } | ||
1732 | } | ||
1733 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1734 | pub struct TryExpr { | ||
1735 | pub(crate) syntax: SyntaxNode, | ||
1736 | } | ||
1737 | impl std::fmt::Display for TryExpr { | ||
1738 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1739 | std::fmt::Display::fmt(self.syntax(), f) | ||
1740 | } | ||
1741 | } | ||
1742 | impl AstNode for TryExpr { | ||
1743 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1744 | match kind { | ||
1745 | TRY_EXPR => true, | ||
1746 | _ => false, | ||
1747 | } | ||
1748 | } | ||
1749 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1750 | if Self::can_cast(syntax.kind()) { | ||
1751 | Some(Self { syntax }) | ||
1752 | } else { | ||
1753 | None | ||
1754 | } | ||
1755 | } | ||
1756 | fn syntax(&self) -> &SyntaxNode { | ||
1757 | &self.syntax | ||
1758 | } | ||
1759 | } | ||
1760 | impl TryExpr { | ||
1761 | pub fn expr(&self) -> Option<Expr> { | ||
1762 | AstChildren::new(&self.syntax).next() | ||
1763 | } | ||
1764 | } | ||
1765 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1766 | pub struct CastExpr { | ||
1767 | pub(crate) syntax: SyntaxNode, | ||
1768 | } | ||
1769 | impl std::fmt::Display for CastExpr { | ||
1770 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1771 | std::fmt::Display::fmt(self.syntax(), f) | ||
1772 | } | ||
1773 | } | ||
1774 | impl AstNode for CastExpr { | ||
1775 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1776 | match kind { | ||
1777 | CAST_EXPR => true, | ||
1778 | _ => false, | ||
1779 | } | ||
1780 | } | ||
1781 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1782 | if Self::can_cast(syntax.kind()) { | ||
1783 | Some(Self { syntax }) | ||
1784 | } else { | ||
1785 | None | ||
1786 | } | ||
1787 | } | ||
1788 | fn syntax(&self) -> &SyntaxNode { | ||
1789 | &self.syntax | ||
1790 | } | ||
1791 | } | ||
1792 | impl CastExpr { | ||
1793 | pub fn expr(&self) -> Option<Expr> { | ||
1794 | AstChildren::new(&self.syntax).next() | ||
1795 | } | ||
1796 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
1797 | AstChildren::new(&self.syntax).next() | ||
1798 | } | ||
1799 | } | ||
1800 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1801 | pub struct RefExpr { | ||
1802 | pub(crate) syntax: SyntaxNode, | ||
1803 | } | ||
1804 | impl std::fmt::Display for RefExpr { | ||
1805 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1806 | std::fmt::Display::fmt(self.syntax(), f) | ||
1807 | } | ||
1808 | } | ||
1809 | impl AstNode for RefExpr { | ||
1810 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1811 | match kind { | ||
1812 | REF_EXPR => true, | ||
1813 | _ => false, | ||
1814 | } | ||
1815 | } | ||
1816 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1817 | if Self::can_cast(syntax.kind()) { | ||
1818 | Some(Self { syntax }) | ||
1819 | } else { | ||
1820 | None | ||
1821 | } | ||
1822 | } | ||
1823 | fn syntax(&self) -> &SyntaxNode { | ||
1824 | &self.syntax | ||
1825 | } | ||
1826 | } | ||
1827 | impl RefExpr { | ||
1828 | pub fn expr(&self) -> Option<Expr> { | ||
1829 | AstChildren::new(&self.syntax).next() | ||
1830 | } | ||
1831 | } | ||
1832 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1833 | pub struct PrefixExpr { | ||
1834 | pub(crate) syntax: SyntaxNode, | ||
1835 | } | ||
1836 | impl std::fmt::Display for PrefixExpr { | ||
1837 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1838 | std::fmt::Display::fmt(self.syntax(), f) | ||
1839 | } | ||
1840 | } | ||
1841 | impl AstNode for PrefixExpr { | ||
1842 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1843 | match kind { | ||
1844 | PREFIX_EXPR => true, | ||
1845 | _ => false, | ||
1846 | } | ||
1847 | } | ||
1848 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1849 | if Self::can_cast(syntax.kind()) { | ||
1850 | Some(Self { syntax }) | ||
1851 | } else { | ||
1852 | None | ||
1853 | } | ||
1854 | } | ||
1855 | fn syntax(&self) -> &SyntaxNode { | ||
1856 | &self.syntax | ||
1857 | } | ||
1858 | } | ||
1859 | impl PrefixExpr { | ||
1860 | pub fn expr(&self) -> Option<Expr> { | ||
1861 | AstChildren::new(&self.syntax).next() | ||
1862 | } | ||
1863 | } | ||
1864 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1865 | pub struct BoxExpr { | ||
1866 | pub(crate) syntax: SyntaxNode, | ||
1867 | } | ||
1868 | impl std::fmt::Display for BoxExpr { | ||
1869 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1870 | std::fmt::Display::fmt(self.syntax(), f) | ||
1871 | } | ||
1872 | } | ||
1873 | impl AstNode for BoxExpr { | ||
1874 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1875 | match kind { | ||
1876 | BOX_EXPR => true, | ||
1877 | _ => false, | ||
1878 | } | ||
1879 | } | ||
1880 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1881 | if Self::can_cast(syntax.kind()) { | ||
1882 | Some(Self { syntax }) | ||
1883 | } else { | ||
1884 | None | ||
1885 | } | ||
1886 | } | ||
1887 | fn syntax(&self) -> &SyntaxNode { | ||
1888 | &self.syntax | ||
1889 | } | ||
1890 | } | ||
1891 | impl BoxExpr { | ||
1892 | pub fn expr(&self) -> Option<Expr> { | ||
1893 | AstChildren::new(&self.syntax).next() | ||
1894 | } | ||
1895 | } | ||
1896 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1897 | pub struct RangeExpr { | ||
1898 | pub(crate) syntax: SyntaxNode, | ||
1899 | } | ||
1900 | impl std::fmt::Display for RangeExpr { | ||
1901 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1902 | std::fmt::Display::fmt(self.syntax(), f) | ||
1903 | } | ||
1904 | } | ||
1905 | impl AstNode for RangeExpr { | ||
1906 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1907 | match kind { | ||
1908 | RANGE_EXPR => true, | ||
1909 | _ => false, | ||
1910 | } | ||
1911 | } | ||
1912 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1913 | if Self::can_cast(syntax.kind()) { | ||
1914 | Some(Self { syntax }) | ||
1915 | } else { | ||
1916 | None | ||
1917 | } | ||
1918 | } | ||
1919 | fn syntax(&self) -> &SyntaxNode { | ||
1920 | &self.syntax | ||
1921 | } | ||
1922 | } | ||
1923 | impl RangeExpr {} | ||
1924 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1925 | pub struct BinExpr { | ||
1926 | pub(crate) syntax: SyntaxNode, | ||
1927 | } | ||
1928 | impl std::fmt::Display for BinExpr { | ||
1929 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1930 | std::fmt::Display::fmt(self.syntax(), f) | ||
1931 | } | ||
1932 | } | ||
1933 | impl AstNode for BinExpr { | ||
1934 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1935 | match kind { | ||
1936 | BIN_EXPR => true, | ||
1937 | _ => false, | ||
1938 | } | ||
1939 | } | ||
1940 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1941 | if Self::can_cast(syntax.kind()) { | ||
1942 | Some(Self { syntax }) | ||
1943 | } else { | ||
1944 | None | ||
1945 | } | ||
1946 | } | ||
1947 | fn syntax(&self) -> &SyntaxNode { | ||
1948 | &self.syntax | ||
1949 | } | ||
1950 | } | ||
1951 | impl BinExpr {} | ||
1952 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1953 | pub struct Literal { | ||
1954 | pub(crate) syntax: SyntaxNode, | ||
1955 | } | ||
1956 | impl std::fmt::Display for Literal { | ||
1957 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1958 | std::fmt::Display::fmt(self.syntax(), f) | ||
1959 | } | ||
1960 | } | ||
1961 | impl AstNode for Literal { | ||
1962 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1963 | match kind { | ||
1964 | LITERAL => true, | ||
1965 | _ => false, | ||
1966 | } | ||
1967 | } | ||
1968 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1969 | if Self::can_cast(syntax.kind()) { | ||
1970 | Some(Self { syntax }) | ||
1971 | } else { | ||
1972 | None | ||
1973 | } | ||
1974 | } | ||
1975 | fn syntax(&self) -> &SyntaxNode { | ||
1976 | &self.syntax | ||
1977 | } | ||
1978 | } | ||
1979 | impl Literal {} | ||
1980 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1981 | pub struct MatchExpr { | ||
1982 | pub(crate) syntax: SyntaxNode, | ||
1983 | } | ||
1984 | impl std::fmt::Display for MatchExpr { | ||
1985 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1986 | std::fmt::Display::fmt(self.syntax(), f) | ||
1987 | } | ||
1988 | } | ||
1989 | impl AstNode for MatchExpr { | ||
1990 | fn can_cast(kind: SyntaxKind) -> bool { | ||
1991 | match kind { | ||
1992 | MATCH_EXPR => true, | ||
1993 | _ => false, | ||
1994 | } | ||
1995 | } | ||
1996 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1997 | if Self::can_cast(syntax.kind()) { | ||
1998 | Some(Self { syntax }) | ||
1999 | } else { | ||
2000 | None | ||
2001 | } | ||
2002 | } | ||
2003 | fn syntax(&self) -> &SyntaxNode { | ||
2004 | &self.syntax | ||
2005 | } | ||
2006 | } | ||
2007 | impl MatchExpr { | ||
2008 | pub fn expr(&self) -> Option<Expr> { | ||
2009 | AstChildren::new(&self.syntax).next() | ||
2010 | } | ||
2011 | pub fn match_arm_list(&self) -> Option<MatchArmList> { | ||
2012 | AstChildren::new(&self.syntax).next() | ||
2013 | } | ||
2014 | } | ||
2015 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2016 | pub struct MatchArmList { | ||
2017 | pub(crate) syntax: SyntaxNode, | ||
2018 | } | ||
2019 | impl std::fmt::Display for MatchArmList { | ||
2020 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2021 | std::fmt::Display::fmt(self.syntax(), f) | ||
2022 | } | ||
2023 | } | ||
2024 | impl AstNode for MatchArmList { | ||
2025 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2026 | match kind { | ||
2027 | MATCH_ARM_LIST => true, | ||
2028 | _ => false, | ||
2029 | } | ||
2030 | } | ||
2031 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2032 | if Self::can_cast(syntax.kind()) { | ||
2033 | Some(Self { syntax }) | ||
2034 | } else { | ||
2035 | None | ||
2036 | } | ||
2037 | } | ||
2038 | fn syntax(&self) -> &SyntaxNode { | ||
2039 | &self.syntax | ||
2040 | } | ||
2041 | } | ||
2042 | impl ast::AttrsOwner for MatchArmList {} | ||
2043 | impl MatchArmList { | ||
2044 | pub fn arms(&self) -> AstChildren<MatchArm> { | ||
2045 | AstChildren::new(&self.syntax) | ||
2046 | } | ||
2047 | } | ||
2048 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2049 | pub struct MatchArm { | ||
2050 | pub(crate) syntax: SyntaxNode, | ||
2051 | } | ||
2052 | impl std::fmt::Display for MatchArm { | ||
2053 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2054 | std::fmt::Display::fmt(self.syntax(), f) | ||
2055 | } | ||
2056 | } | ||
2057 | impl AstNode for MatchArm { | ||
2058 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2059 | match kind { | ||
2060 | MATCH_ARM => true, | ||
2061 | _ => false, | ||
2062 | } | ||
2063 | } | ||
2064 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2065 | if Self::can_cast(syntax.kind()) { | ||
2066 | Some(Self { syntax }) | ||
2067 | } else { | ||
2068 | None | ||
2069 | } | ||
2070 | } | ||
2071 | fn syntax(&self) -> &SyntaxNode { | ||
2072 | &self.syntax | ||
2073 | } | ||
2074 | } | ||
2075 | impl ast::AttrsOwner for MatchArm {} | ||
2076 | impl MatchArm { | ||
2077 | pub fn pat(&self) -> Option<Pat> { | ||
2078 | AstChildren::new(&self.syntax).next() | ||
2079 | } | ||
2080 | pub fn guard(&self) -> Option<MatchGuard> { | ||
2081 | AstChildren::new(&self.syntax).next() | ||
2082 | } | ||
2083 | pub fn expr(&self) -> Option<Expr> { | ||
2084 | AstChildren::new(&self.syntax).next() | ||
2085 | } | ||
2086 | } | ||
2087 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2088 | pub struct MatchGuard { | ||
2089 | pub(crate) syntax: SyntaxNode, | ||
2090 | } | ||
2091 | impl std::fmt::Display for MatchGuard { | ||
2092 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2093 | std::fmt::Display::fmt(self.syntax(), f) | ||
2094 | } | ||
2095 | } | ||
2096 | impl AstNode for MatchGuard { | ||
2097 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2098 | match kind { | ||
2099 | MATCH_GUARD => true, | ||
2100 | _ => false, | ||
2101 | } | ||
2102 | } | ||
2103 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2104 | if Self::can_cast(syntax.kind()) { | ||
2105 | Some(Self { syntax }) | ||
2106 | } else { | ||
2107 | None | ||
2108 | } | ||
2109 | } | ||
2110 | fn syntax(&self) -> &SyntaxNode { | ||
2111 | &self.syntax | ||
2112 | } | ||
2113 | } | ||
2114 | impl MatchGuard { | ||
2115 | pub fn expr(&self) -> Option<Expr> { | ||
2116 | AstChildren::new(&self.syntax).next() | ||
2117 | } | ||
2118 | } | ||
2119 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2120 | pub struct RecordLit { | ||
2121 | pub(crate) syntax: SyntaxNode, | ||
2122 | } | ||
2123 | impl std::fmt::Display for RecordLit { | ||
2124 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2125 | std::fmt::Display::fmt(self.syntax(), f) | ||
2126 | } | ||
2127 | } | ||
2128 | impl AstNode for RecordLit { | ||
2129 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2130 | match kind { | ||
2131 | RECORD_LIT => true, | ||
2132 | _ => false, | ||
2133 | } | ||
2134 | } | ||
2135 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2136 | if Self::can_cast(syntax.kind()) { | ||
2137 | Some(Self { syntax }) | ||
2138 | } else { | ||
2139 | None | ||
2140 | } | ||
2141 | } | ||
2142 | fn syntax(&self) -> &SyntaxNode { | ||
2143 | &self.syntax | ||
2144 | } | ||
2145 | } | ||
2146 | impl RecordLit { | ||
2147 | pub fn path(&self) -> Option<Path> { | ||
2148 | AstChildren::new(&self.syntax).next() | ||
2149 | } | ||
2150 | pub fn record_field_list(&self) -> Option<RecordFieldList> { | ||
2151 | AstChildren::new(&self.syntax).next() | ||
2152 | } | ||
2153 | } | ||
2154 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2155 | pub struct RecordFieldList { | ||
2156 | pub(crate) syntax: SyntaxNode, | ||
2157 | } | ||
2158 | impl std::fmt::Display for RecordFieldList { | ||
2159 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2160 | std::fmt::Display::fmt(self.syntax(), f) | ||
2161 | } | ||
2162 | } | ||
2163 | impl AstNode for RecordFieldList { | ||
2164 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2165 | match kind { | ||
2166 | RECORD_FIELD_LIST => true, | ||
2167 | _ => false, | ||
2168 | } | ||
2169 | } | ||
2170 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2171 | if Self::can_cast(syntax.kind()) { | ||
2172 | Some(Self { syntax }) | ||
2173 | } else { | ||
2174 | None | ||
2175 | } | ||
2176 | } | ||
2177 | fn syntax(&self) -> &SyntaxNode { | ||
2178 | &self.syntax | ||
2179 | } | ||
2180 | } | ||
2181 | impl RecordFieldList { | ||
2182 | pub fn fields(&self) -> AstChildren<RecordField> { | ||
2183 | AstChildren::new(&self.syntax) | ||
2184 | } | ||
2185 | pub fn spread(&self) -> Option<Expr> { | ||
2186 | AstChildren::new(&self.syntax).next() | ||
2187 | } | ||
2188 | } | ||
2189 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2190 | pub struct RecordField { | ||
2191 | pub(crate) syntax: SyntaxNode, | ||
2192 | } | ||
2193 | impl std::fmt::Display for RecordField { | ||
2194 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2195 | std::fmt::Display::fmt(self.syntax(), f) | ||
2196 | } | ||
2197 | } | ||
2198 | impl AstNode for RecordField { | ||
2199 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2200 | match kind { | ||
2201 | RECORD_FIELD => true, | ||
2202 | _ => false, | ||
2203 | } | ||
2204 | } | ||
2205 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2206 | if Self::can_cast(syntax.kind()) { | ||
2207 | Some(Self { syntax }) | ||
2208 | } else { | ||
2209 | None | ||
2210 | } | ||
2211 | } | ||
2212 | fn syntax(&self) -> &SyntaxNode { | ||
2213 | &self.syntax | ||
2214 | } | ||
2215 | } | ||
2216 | impl RecordField { | ||
2217 | pub fn name_ref(&self) -> Option<NameRef> { | ||
2218 | AstChildren::new(&self.syntax).next() | ||
2219 | } | ||
2220 | pub fn expr(&self) -> Option<Expr> { | ||
2221 | AstChildren::new(&self.syntax).next() | ||
2222 | } | ||
2223 | } | ||
2224 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2225 | pub struct OrPat { | ||
2226 | pub(crate) syntax: SyntaxNode, | ||
2227 | } | ||
2228 | impl std::fmt::Display for OrPat { | ||
2229 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2230 | std::fmt::Display::fmt(self.syntax(), f) | ||
2231 | } | ||
2232 | } | ||
2233 | impl AstNode for OrPat { | ||
2234 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2235 | match kind { | ||
2236 | OR_PAT => true, | ||
2237 | _ => false, | ||
2238 | } | ||
2239 | } | ||
2240 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2241 | if Self::can_cast(syntax.kind()) { | ||
2242 | Some(Self { syntax }) | ||
2243 | } else { | ||
2244 | None | ||
2245 | } | ||
2246 | } | ||
2247 | fn syntax(&self) -> &SyntaxNode { | ||
2248 | &self.syntax | ||
2249 | } | ||
2250 | } | ||
2251 | impl OrPat { | ||
2252 | pub fn pats(&self) -> AstChildren<Pat> { | ||
2253 | AstChildren::new(&self.syntax) | ||
2254 | } | ||
2255 | } | ||
2256 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2257 | pub struct ParenPat { | ||
2258 | pub(crate) syntax: SyntaxNode, | ||
2259 | } | ||
2260 | impl std::fmt::Display for ParenPat { | ||
2261 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2262 | std::fmt::Display::fmt(self.syntax(), f) | ||
2263 | } | ||
2264 | } | ||
2265 | impl AstNode for ParenPat { | ||
2266 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2267 | match kind { | ||
2268 | PAREN_PAT => true, | ||
2269 | _ => false, | ||
2270 | } | ||
2271 | } | ||
2272 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2273 | if Self::can_cast(syntax.kind()) { | ||
2274 | Some(Self { syntax }) | ||
2275 | } else { | ||
2276 | None | ||
2277 | } | ||
2278 | } | ||
2279 | fn syntax(&self) -> &SyntaxNode { | ||
2280 | &self.syntax | ||
2281 | } | ||
2282 | } | ||
2283 | impl ParenPat { | ||
2284 | pub fn pat(&self) -> Option<Pat> { | ||
2285 | AstChildren::new(&self.syntax).next() | ||
2286 | } | ||
2287 | } | ||
2288 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2289 | pub struct RefPat { | ||
2290 | pub(crate) syntax: SyntaxNode, | ||
2291 | } | ||
2292 | impl std::fmt::Display for RefPat { | ||
2293 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2294 | std::fmt::Display::fmt(self.syntax(), f) | ||
2295 | } | ||
2296 | } | ||
2297 | impl AstNode for RefPat { | ||
2298 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2299 | match kind { | ||
2300 | REF_PAT => true, | ||
2301 | _ => false, | ||
2302 | } | ||
2303 | } | ||
2304 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2305 | if Self::can_cast(syntax.kind()) { | ||
2306 | Some(Self { syntax }) | ||
2307 | } else { | ||
2308 | None | ||
2309 | } | ||
2310 | } | ||
2311 | fn syntax(&self) -> &SyntaxNode { | ||
2312 | &self.syntax | ||
2313 | } | ||
2314 | } | ||
2315 | impl RefPat { | ||
2316 | pub fn pat(&self) -> Option<Pat> { | ||
2317 | AstChildren::new(&self.syntax).next() | ||
2318 | } | ||
2319 | } | ||
2320 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2321 | pub struct BoxPat { | ||
2322 | pub(crate) syntax: SyntaxNode, | ||
2323 | } | ||
2324 | impl std::fmt::Display for BoxPat { | ||
2325 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2326 | std::fmt::Display::fmt(self.syntax(), f) | ||
2327 | } | ||
2328 | } | ||
2329 | impl AstNode for BoxPat { | ||
2330 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2331 | match kind { | ||
2332 | BOX_PAT => true, | ||
2333 | _ => false, | ||
2334 | } | ||
2335 | } | ||
2336 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2337 | if Self::can_cast(syntax.kind()) { | ||
2338 | Some(Self { syntax }) | ||
2339 | } else { | ||
2340 | None | ||
2341 | } | ||
2342 | } | ||
2343 | fn syntax(&self) -> &SyntaxNode { | ||
2344 | &self.syntax | ||
2345 | } | ||
2346 | } | ||
2347 | impl BoxPat { | ||
2348 | pub fn pat(&self) -> Option<Pat> { | ||
2349 | AstChildren::new(&self.syntax).next() | ||
2350 | } | ||
2351 | } | ||
2352 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2353 | pub struct BindPat { | ||
2354 | pub(crate) syntax: SyntaxNode, | ||
2355 | } | ||
2356 | impl std::fmt::Display for BindPat { | ||
2357 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2358 | std::fmt::Display::fmt(self.syntax(), f) | ||
2359 | } | ||
2360 | } | ||
2361 | impl AstNode for BindPat { | ||
2362 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2363 | match kind { | ||
2364 | BIND_PAT => true, | ||
2365 | _ => false, | ||
2366 | } | ||
2367 | } | ||
2368 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2369 | if Self::can_cast(syntax.kind()) { | ||
2370 | Some(Self { syntax }) | ||
2371 | } else { | ||
2372 | None | ||
2373 | } | ||
2374 | } | ||
2375 | fn syntax(&self) -> &SyntaxNode { | ||
2376 | &self.syntax | ||
2377 | } | ||
2378 | } | ||
2379 | impl ast::NameOwner for BindPat {} | ||
2380 | impl BindPat { | ||
2381 | pub fn pat(&self) -> Option<Pat> { | ||
2382 | AstChildren::new(&self.syntax).next() | ||
2383 | } | ||
2384 | } | ||
2385 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2386 | pub struct PlaceholderPat { | ||
2387 | pub(crate) syntax: SyntaxNode, | ||
2388 | } | ||
2389 | impl std::fmt::Display for PlaceholderPat { | ||
2390 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2391 | std::fmt::Display::fmt(self.syntax(), f) | ||
2392 | } | ||
2393 | } | ||
2394 | impl AstNode for PlaceholderPat { | ||
2395 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2396 | match kind { | ||
2397 | PLACEHOLDER_PAT => true, | ||
2398 | _ => false, | ||
2399 | } | ||
2400 | } | ||
2401 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2402 | if Self::can_cast(syntax.kind()) { | ||
2403 | Some(Self { syntax }) | ||
2404 | } else { | ||
2405 | None | ||
2406 | } | ||
2407 | } | ||
2408 | fn syntax(&self) -> &SyntaxNode { | ||
2409 | &self.syntax | ||
2410 | } | ||
2411 | } | ||
2412 | impl PlaceholderPat {} | ||
2413 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2414 | pub struct DotDotPat { | ||
2415 | pub(crate) syntax: SyntaxNode, | ||
2416 | } | ||
2417 | impl std::fmt::Display for DotDotPat { | ||
2418 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2419 | std::fmt::Display::fmt(self.syntax(), f) | ||
2420 | } | ||
2421 | } | ||
2422 | impl AstNode for DotDotPat { | ||
2423 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2424 | match kind { | ||
2425 | DOT_DOT_PAT => true, | ||
2426 | _ => false, | ||
2427 | } | ||
2428 | } | ||
2429 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2430 | if Self::can_cast(syntax.kind()) { | ||
2431 | Some(Self { syntax }) | ||
2432 | } else { | ||
2433 | None | ||
2434 | } | ||
2435 | } | ||
2436 | fn syntax(&self) -> &SyntaxNode { | ||
2437 | &self.syntax | ||
2438 | } | ||
2439 | } | ||
2440 | impl DotDotPat {} | ||
2441 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2442 | pub struct PathPat { | ||
2443 | pub(crate) syntax: SyntaxNode, | ||
2444 | } | ||
2445 | impl std::fmt::Display for PathPat { | ||
2446 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2447 | std::fmt::Display::fmt(self.syntax(), f) | ||
2448 | } | ||
2449 | } | ||
2450 | impl AstNode for PathPat { | ||
2451 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2452 | match kind { | ||
2453 | PATH_PAT => true, | ||
2454 | _ => false, | ||
2455 | } | ||
2456 | } | ||
2457 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2458 | if Self::can_cast(syntax.kind()) { | ||
2459 | Some(Self { syntax }) | ||
2460 | } else { | ||
2461 | None | ||
2462 | } | ||
2463 | } | ||
2464 | fn syntax(&self) -> &SyntaxNode { | ||
2465 | &self.syntax | ||
2466 | } | ||
2467 | } | ||
2468 | impl PathPat { | ||
2469 | pub fn path(&self) -> Option<Path> { | ||
2470 | AstChildren::new(&self.syntax).next() | ||
2471 | } | ||
2472 | } | ||
2473 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2474 | pub struct SlicePat { | ||
2475 | pub(crate) syntax: SyntaxNode, | ||
2476 | } | ||
2477 | impl std::fmt::Display for SlicePat { | ||
2478 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2479 | std::fmt::Display::fmt(self.syntax(), f) | ||
2480 | } | ||
2481 | } | ||
2482 | impl AstNode for SlicePat { | ||
2483 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2484 | match kind { | ||
2485 | SLICE_PAT => true, | ||
2486 | _ => false, | ||
2487 | } | ||
2488 | } | ||
2489 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2490 | if Self::can_cast(syntax.kind()) { | ||
2491 | Some(Self { syntax }) | ||
2492 | } else { | ||
2493 | None | ||
2494 | } | ||
2495 | } | ||
2496 | fn syntax(&self) -> &SyntaxNode { | ||
2497 | &self.syntax | ||
2498 | } | ||
2499 | } | ||
2500 | impl SlicePat { | ||
2501 | pub fn args(&self) -> AstChildren<Pat> { | ||
2502 | AstChildren::new(&self.syntax) | ||
2503 | } | ||
2504 | } | ||
2505 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2506 | pub struct RangePat { | ||
2507 | pub(crate) syntax: SyntaxNode, | ||
2508 | } | ||
2509 | impl std::fmt::Display for RangePat { | ||
2510 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2511 | std::fmt::Display::fmt(self.syntax(), f) | ||
2512 | } | ||
2513 | } | ||
2514 | impl AstNode for RangePat { | ||
2515 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2516 | match kind { | ||
2517 | RANGE_PAT => true, | ||
2518 | _ => false, | ||
2519 | } | ||
2520 | } | ||
2521 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2522 | if Self::can_cast(syntax.kind()) { | ||
2523 | Some(Self { syntax }) | ||
2524 | } else { | ||
2525 | None | ||
2526 | } | ||
2527 | } | ||
2528 | fn syntax(&self) -> &SyntaxNode { | ||
2529 | &self.syntax | ||
2530 | } | ||
2531 | } | ||
2532 | impl RangePat {} | ||
2533 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2534 | pub struct LiteralPat { | ||
2535 | pub(crate) syntax: SyntaxNode, | ||
2536 | } | ||
2537 | impl std::fmt::Display for LiteralPat { | ||
2538 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2539 | std::fmt::Display::fmt(self.syntax(), f) | ||
2540 | } | ||
2541 | } | ||
2542 | impl AstNode for LiteralPat { | ||
2543 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2544 | match kind { | ||
2545 | LITERAL_PAT => true, | ||
2546 | _ => false, | ||
2547 | } | ||
2548 | } | ||
2549 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2550 | if Self::can_cast(syntax.kind()) { | ||
2551 | Some(Self { syntax }) | ||
2552 | } else { | ||
2553 | None | ||
2554 | } | ||
2555 | } | ||
2556 | fn syntax(&self) -> &SyntaxNode { | ||
2557 | &self.syntax | ||
2558 | } | ||
2559 | } | ||
2560 | impl LiteralPat { | ||
2561 | pub fn literal(&self) -> Option<Literal> { | ||
2562 | AstChildren::new(&self.syntax).next() | ||
2563 | } | ||
2564 | } | ||
2565 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2566 | pub struct MacroPat { | ||
2567 | pub(crate) syntax: SyntaxNode, | ||
2568 | } | ||
2569 | impl std::fmt::Display for MacroPat { | ||
2570 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2571 | std::fmt::Display::fmt(self.syntax(), f) | ||
2572 | } | ||
2573 | } | ||
2574 | impl AstNode for MacroPat { | ||
2575 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2576 | match kind { | ||
2577 | MACRO_PAT => true, | ||
2578 | _ => false, | ||
2579 | } | ||
2580 | } | ||
2581 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2582 | if Self::can_cast(syntax.kind()) { | ||
2583 | Some(Self { syntax }) | ||
2584 | } else { | ||
2585 | None | ||
2586 | } | ||
2587 | } | ||
2588 | fn syntax(&self) -> &SyntaxNode { | ||
2589 | &self.syntax | ||
2590 | } | ||
2591 | } | ||
2592 | impl MacroPat { | ||
2593 | pub fn macro_call(&self) -> Option<MacroCall> { | ||
2594 | AstChildren::new(&self.syntax).next() | ||
2595 | } | ||
2596 | } | ||
2597 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2598 | pub struct RecordPat { | ||
2599 | pub(crate) syntax: SyntaxNode, | ||
2600 | } | ||
2601 | impl std::fmt::Display for RecordPat { | ||
2602 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2603 | std::fmt::Display::fmt(self.syntax(), f) | ||
2604 | } | ||
2605 | } | ||
2606 | impl AstNode for RecordPat { | ||
2607 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2608 | match kind { | ||
2609 | RECORD_PAT => true, | ||
2610 | _ => false, | ||
2611 | } | ||
2612 | } | ||
2613 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2614 | if Self::can_cast(syntax.kind()) { | ||
2615 | Some(Self { syntax }) | ||
2616 | } else { | ||
2617 | None | ||
2618 | } | ||
2619 | } | ||
2620 | fn syntax(&self) -> &SyntaxNode { | ||
2621 | &self.syntax | ||
2622 | } | ||
2623 | } | ||
2624 | impl RecordPat { | ||
2625 | pub fn record_field_pat_list(&self) -> Option<RecordFieldPatList> { | ||
2626 | AstChildren::new(&self.syntax).next() | ||
2627 | } | ||
2628 | pub fn path(&self) -> Option<Path> { | ||
2629 | AstChildren::new(&self.syntax).next() | ||
2630 | } | ||
2631 | } | ||
2632 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2633 | pub struct RecordFieldPatList { | ||
2634 | pub(crate) syntax: SyntaxNode, | ||
2635 | } | ||
2636 | impl std::fmt::Display for RecordFieldPatList { | ||
2637 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2638 | std::fmt::Display::fmt(self.syntax(), f) | ||
2639 | } | ||
2640 | } | ||
2641 | impl AstNode for RecordFieldPatList { | ||
2642 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2643 | match kind { | ||
2644 | RECORD_FIELD_PAT_LIST => true, | ||
2645 | _ => false, | ||
2646 | } | ||
2647 | } | ||
2648 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2649 | if Self::can_cast(syntax.kind()) { | ||
2650 | Some(Self { syntax }) | ||
2651 | } else { | ||
2652 | None | ||
2653 | } | ||
2654 | } | ||
2655 | fn syntax(&self) -> &SyntaxNode { | ||
2656 | &self.syntax | ||
2657 | } | ||
2658 | } | ||
2659 | impl RecordFieldPatList { | ||
2660 | pub fn record_field_pats(&self) -> AstChildren<RecordFieldPat> { | ||
2661 | AstChildren::new(&self.syntax) | ||
2662 | } | ||
2663 | pub fn bind_pats(&self) -> AstChildren<BindPat> { | ||
2664 | AstChildren::new(&self.syntax) | ||
2665 | } | ||
2666 | } | ||
2667 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2668 | pub struct RecordFieldPat { | ||
2669 | pub(crate) syntax: SyntaxNode, | ||
2670 | } | ||
2671 | impl std::fmt::Display for RecordFieldPat { | ||
2672 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2673 | std::fmt::Display::fmt(self.syntax(), f) | ||
2674 | } | ||
2675 | } | ||
2676 | impl AstNode for RecordFieldPat { | ||
2677 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2678 | match kind { | ||
2679 | RECORD_FIELD_PAT => true, | ||
2680 | _ => false, | ||
2681 | } | ||
2682 | } | ||
2683 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2684 | if Self::can_cast(syntax.kind()) { | ||
2685 | Some(Self { syntax }) | ||
2686 | } else { | ||
2687 | None | ||
2688 | } | ||
2689 | } | ||
2690 | fn syntax(&self) -> &SyntaxNode { | ||
2691 | &self.syntax | ||
2692 | } | ||
2693 | } | ||
2694 | impl ast::NameOwner for RecordFieldPat {} | ||
2695 | impl RecordFieldPat { | ||
2696 | pub fn pat(&self) -> Option<Pat> { | ||
2697 | AstChildren::new(&self.syntax).next() | ||
2698 | } | ||
2699 | } | ||
2700 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2701 | pub struct TupleStructPat { | ||
2702 | pub(crate) syntax: SyntaxNode, | ||
2703 | } | ||
2704 | impl std::fmt::Display for TupleStructPat { | ||
2705 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2706 | std::fmt::Display::fmt(self.syntax(), f) | ||
2707 | } | ||
2708 | } | ||
2709 | impl AstNode for TupleStructPat { | ||
2710 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2711 | match kind { | ||
2712 | TUPLE_STRUCT_PAT => true, | ||
2713 | _ => false, | ||
2714 | } | ||
2715 | } | ||
2716 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2717 | if Self::can_cast(syntax.kind()) { | ||
2718 | Some(Self { syntax }) | ||
2719 | } else { | ||
2720 | None | ||
2721 | } | ||
2722 | } | ||
2723 | fn syntax(&self) -> &SyntaxNode { | ||
2724 | &self.syntax | ||
2725 | } | ||
2726 | } | ||
2727 | impl TupleStructPat { | ||
2728 | pub fn path(&self) -> Option<Path> { | ||
2729 | AstChildren::new(&self.syntax).next() | ||
2730 | } | ||
2731 | pub fn args(&self) -> AstChildren<Pat> { | ||
2732 | AstChildren::new(&self.syntax) | ||
2733 | } | ||
2734 | } | ||
2735 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2736 | pub struct TuplePat { | ||
2737 | pub(crate) syntax: SyntaxNode, | ||
2738 | } | ||
2739 | impl std::fmt::Display for TuplePat { | ||
2740 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2741 | std::fmt::Display::fmt(self.syntax(), f) | ||
2742 | } | ||
2743 | } | ||
2744 | impl AstNode for TuplePat { | ||
2745 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2746 | match kind { | ||
2747 | TUPLE_PAT => true, | ||
2748 | _ => false, | ||
2749 | } | ||
2750 | } | ||
2751 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2752 | if Self::can_cast(syntax.kind()) { | ||
2753 | Some(Self { syntax }) | ||
2754 | } else { | ||
2755 | None | ||
2756 | } | ||
2757 | } | ||
2758 | fn syntax(&self) -> &SyntaxNode { | ||
2759 | &self.syntax | ||
2760 | } | ||
2761 | } | ||
2762 | impl TuplePat { | ||
2763 | pub fn args(&self) -> AstChildren<Pat> { | ||
2764 | AstChildren::new(&self.syntax) | ||
2765 | } | ||
2766 | } | ||
2767 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2768 | pub struct Visibility { | ||
2769 | pub(crate) syntax: SyntaxNode, | ||
2770 | } | ||
2771 | impl std::fmt::Display for Visibility { | ||
2772 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2773 | std::fmt::Display::fmt(self.syntax(), f) | ||
2774 | } | ||
2775 | } | ||
2776 | impl AstNode for Visibility { | ||
2777 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2778 | match kind { | ||
2779 | VISIBILITY => true, | ||
2780 | _ => false, | ||
2781 | } | ||
2782 | } | ||
2783 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2784 | if Self::can_cast(syntax.kind()) { | ||
2785 | Some(Self { syntax }) | ||
2786 | } else { | ||
2787 | None | ||
2788 | } | ||
2789 | } | ||
2790 | fn syntax(&self) -> &SyntaxNode { | ||
2791 | &self.syntax | ||
2792 | } | ||
2793 | } | ||
2794 | impl Visibility {} | ||
2795 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2796 | pub struct Name { | ||
2797 | pub(crate) syntax: SyntaxNode, | ||
2798 | } | ||
2799 | impl std::fmt::Display for Name { | ||
2800 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2801 | std::fmt::Display::fmt(self.syntax(), f) | ||
2802 | } | ||
2803 | } | ||
2804 | impl AstNode for Name { | ||
2805 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2806 | match kind { | ||
2807 | NAME => true, | ||
2808 | _ => false, | ||
2809 | } | ||
2810 | } | ||
2811 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2812 | if Self::can_cast(syntax.kind()) { | ||
2813 | Some(Self { syntax }) | ||
2814 | } else { | ||
2815 | None | ||
2816 | } | ||
2817 | } | ||
2818 | fn syntax(&self) -> &SyntaxNode { | ||
2819 | &self.syntax | ||
2820 | } | ||
2821 | } | ||
2822 | impl Name {} | ||
2823 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2824 | pub struct NameRef { | ||
2825 | pub(crate) syntax: SyntaxNode, | ||
2826 | } | ||
2827 | impl std::fmt::Display for NameRef { | ||
2828 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2829 | std::fmt::Display::fmt(self.syntax(), f) | ||
2830 | } | ||
2831 | } | ||
2832 | impl AstNode for NameRef { | ||
2833 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2834 | match kind { | ||
2835 | NAME_REF => true, | ||
2836 | _ => false, | ||
2837 | } | ||
2838 | } | ||
2839 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2840 | if Self::can_cast(syntax.kind()) { | ||
2841 | Some(Self { syntax }) | ||
2842 | } else { | ||
2843 | None | ||
2844 | } | ||
2845 | } | ||
2846 | fn syntax(&self) -> &SyntaxNode { | ||
2847 | &self.syntax | ||
2848 | } | ||
2849 | } | ||
2850 | impl NameRef {} | ||
2851 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2852 | pub struct MacroCall { | ||
2853 | pub(crate) syntax: SyntaxNode, | ||
2854 | } | ||
2855 | impl std::fmt::Display for MacroCall { | ||
2856 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2857 | std::fmt::Display::fmt(self.syntax(), f) | ||
2858 | } | ||
2859 | } | ||
2860 | impl AstNode for MacroCall { | ||
2861 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2862 | match kind { | ||
2863 | MACRO_CALL => true, | ||
2864 | _ => false, | ||
2865 | } | ||
2866 | } | ||
2867 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2868 | if Self::can_cast(syntax.kind()) { | ||
2869 | Some(Self { syntax }) | ||
2870 | } else { | ||
2871 | None | ||
2872 | } | ||
2873 | } | ||
2874 | fn syntax(&self) -> &SyntaxNode { | ||
2875 | &self.syntax | ||
2876 | } | ||
2877 | } | ||
2878 | impl ast::NameOwner for MacroCall {} | ||
2879 | impl ast::AttrsOwner for MacroCall {} | ||
2880 | impl ast::DocCommentsOwner for MacroCall {} | ||
2881 | impl MacroCall { | ||
2882 | pub fn token_tree(&self) -> Option<TokenTree> { | ||
2883 | AstChildren::new(&self.syntax).next() | ||
2884 | } | ||
2885 | pub fn path(&self) -> Option<Path> { | ||
2886 | AstChildren::new(&self.syntax).next() | ||
2887 | } | ||
2888 | } | ||
2889 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2890 | pub struct Attr { | ||
2891 | pub(crate) syntax: SyntaxNode, | ||
2892 | } | ||
2893 | impl std::fmt::Display for Attr { | ||
2894 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2895 | std::fmt::Display::fmt(self.syntax(), f) | ||
2896 | } | ||
2897 | } | ||
2898 | impl AstNode for Attr { | ||
2899 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2900 | match kind { | ||
2901 | ATTR => true, | ||
2902 | _ => false, | ||
2903 | } | ||
2904 | } | ||
2905 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2906 | if Self::can_cast(syntax.kind()) { | ||
2907 | Some(Self { syntax }) | ||
2908 | } else { | ||
2909 | None | ||
2910 | } | ||
2911 | } | ||
2912 | fn syntax(&self) -> &SyntaxNode { | ||
2913 | &self.syntax | ||
2914 | } | ||
2915 | } | ||
2916 | impl Attr { | ||
2917 | pub fn path(&self) -> Option<Path> { | ||
2918 | AstChildren::new(&self.syntax).next() | ||
2919 | } | ||
2920 | pub fn input(&self) -> Option<AttrInput> { | ||
2921 | AstChildren::new(&self.syntax).next() | ||
2922 | } | ||
2923 | } | ||
2924 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2925 | pub struct TokenTree { | ||
2926 | pub(crate) syntax: SyntaxNode, | ||
2927 | } | ||
2928 | impl std::fmt::Display for TokenTree { | ||
2929 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2930 | std::fmt::Display::fmt(self.syntax(), f) | ||
2931 | } | ||
2932 | } | ||
2933 | impl AstNode for TokenTree { | ||
2934 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2935 | match kind { | ||
2936 | TOKEN_TREE => true, | ||
2937 | _ => false, | ||
2938 | } | ||
2939 | } | ||
2940 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2941 | if Self::can_cast(syntax.kind()) { | ||
2942 | Some(Self { syntax }) | ||
2943 | } else { | ||
2944 | None | ||
2945 | } | ||
2946 | } | ||
2947 | fn syntax(&self) -> &SyntaxNode { | ||
2948 | &self.syntax | ||
2949 | } | ||
2950 | } | ||
2951 | impl TokenTree {} | ||
2952 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2953 | pub struct TypeParamList { | ||
2954 | pub(crate) syntax: SyntaxNode, | ||
2955 | } | ||
2956 | impl std::fmt::Display for TypeParamList { | ||
2957 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2958 | std::fmt::Display::fmt(self.syntax(), f) | ||
2959 | } | ||
2960 | } | ||
2961 | impl AstNode for TypeParamList { | ||
2962 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2963 | match kind { | ||
2964 | TYPE_PARAM_LIST => true, | ||
2965 | _ => false, | ||
2966 | } | ||
2967 | } | ||
2968 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2969 | if Self::can_cast(syntax.kind()) { | ||
2970 | Some(Self { syntax }) | ||
2971 | } else { | ||
2972 | None | ||
2973 | } | ||
2974 | } | ||
2975 | fn syntax(&self) -> &SyntaxNode { | ||
2976 | &self.syntax | ||
2977 | } | ||
2978 | } | ||
2979 | impl TypeParamList { | ||
2980 | pub fn type_params(&self) -> AstChildren<TypeParam> { | ||
2981 | AstChildren::new(&self.syntax) | ||
2982 | } | ||
2983 | pub fn lifetime_params(&self) -> AstChildren<LifetimeParam> { | ||
2984 | AstChildren::new(&self.syntax) | ||
2985 | } | ||
2986 | } | ||
2987 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2988 | pub struct TypeParam { | ||
2989 | pub(crate) syntax: SyntaxNode, | ||
2990 | } | ||
2991 | impl std::fmt::Display for TypeParam { | ||
2992 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2993 | std::fmt::Display::fmt(self.syntax(), f) | ||
2994 | } | ||
2995 | } | ||
2996 | impl AstNode for TypeParam { | ||
2997 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2998 | match kind { | ||
2999 | TYPE_PARAM => true, | ||
3000 | _ => false, | ||
3001 | } | ||
3002 | } | ||
3003 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3004 | if Self::can_cast(syntax.kind()) { | ||
3005 | Some(Self { syntax }) | ||
3006 | } else { | ||
3007 | None | ||
3008 | } | ||
3009 | } | ||
3010 | fn syntax(&self) -> &SyntaxNode { | ||
3011 | &self.syntax | ||
3012 | } | ||
3013 | } | ||
3014 | impl ast::NameOwner for TypeParam {} | ||
3015 | impl ast::AttrsOwner for TypeParam {} | ||
3016 | impl ast::TypeBoundsOwner for TypeParam {} | ||
3017 | impl TypeParam { | ||
3018 | pub fn default_type(&self) -> Option<TypeRef> { | ||
3019 | AstChildren::new(&self.syntax).next() | ||
3020 | } | ||
3021 | } | ||
3022 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3023 | pub struct ConstParam { | ||
3024 | pub(crate) syntax: SyntaxNode, | ||
3025 | } | ||
3026 | impl std::fmt::Display for ConstParam { | ||
3027 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3028 | std::fmt::Display::fmt(self.syntax(), f) | ||
3029 | } | ||
3030 | } | ||
3031 | impl AstNode for ConstParam { | ||
3032 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3033 | match kind { | ||
3034 | CONST_PARAM => true, | ||
3035 | _ => false, | ||
3036 | } | ||
3037 | } | ||
3038 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3039 | if Self::can_cast(syntax.kind()) { | ||
3040 | Some(Self { syntax }) | ||
3041 | } else { | ||
3042 | None | ||
3043 | } | ||
3044 | } | ||
3045 | fn syntax(&self) -> &SyntaxNode { | ||
3046 | &self.syntax | ||
3047 | } | ||
3048 | } | ||
3049 | impl ast::NameOwner for ConstParam {} | ||
3050 | impl ast::AttrsOwner for ConstParam {} | ||
3051 | impl ast::TypeAscriptionOwner for ConstParam {} | ||
3052 | impl ConstParam { | ||
3053 | pub fn default_val(&self) -> Option<Expr> { | ||
3054 | AstChildren::new(&self.syntax).next() | ||
3055 | } | ||
3056 | } | ||
3057 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3058 | pub struct LifetimeParam { | ||
3059 | pub(crate) syntax: SyntaxNode, | ||
3060 | } | ||
3061 | impl std::fmt::Display for LifetimeParam { | ||
3062 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3063 | std::fmt::Display::fmt(self.syntax(), f) | ||
3064 | } | ||
3065 | } | ||
3066 | impl AstNode for LifetimeParam { | ||
3067 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3068 | match kind { | ||
3069 | LIFETIME_PARAM => true, | ||
3070 | _ => false, | ||
3071 | } | ||
3072 | } | ||
3073 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3074 | if Self::can_cast(syntax.kind()) { | ||
3075 | Some(Self { syntax }) | ||
3076 | } else { | ||
3077 | None | ||
3078 | } | ||
3079 | } | ||
3080 | fn syntax(&self) -> &SyntaxNode { | ||
3081 | &self.syntax | ||
3082 | } | ||
3083 | } | ||
3084 | impl ast::AttrsOwner for LifetimeParam {} | ||
3085 | impl LifetimeParam {} | ||
3086 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3087 | pub struct TypeBound { | ||
3088 | pub(crate) syntax: SyntaxNode, | ||
3089 | } | ||
3090 | impl std::fmt::Display for TypeBound { | ||
3091 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3092 | std::fmt::Display::fmt(self.syntax(), f) | ||
3093 | } | ||
3094 | } | ||
3095 | impl AstNode for TypeBound { | ||
3096 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3097 | match kind { | ||
3098 | TYPE_BOUND => true, | ||
3099 | _ => false, | ||
3100 | } | ||
3101 | } | ||
3102 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3103 | if Self::can_cast(syntax.kind()) { | ||
3104 | Some(Self { syntax }) | ||
3105 | } else { | ||
3106 | None | ||
3107 | } | ||
3108 | } | ||
3109 | fn syntax(&self) -> &SyntaxNode { | ||
3110 | &self.syntax | ||
3111 | } | ||
3112 | } | ||
3113 | impl TypeBound { | ||
3114 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
3115 | AstChildren::new(&self.syntax).next() | ||
3116 | } | ||
3117 | } | ||
3118 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3119 | pub struct TypeBoundList { | ||
3120 | pub(crate) syntax: SyntaxNode, | ||
3121 | } | ||
3122 | impl std::fmt::Display for TypeBoundList { | ||
3123 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3124 | std::fmt::Display::fmt(self.syntax(), f) | ||
3125 | } | ||
3126 | } | ||
3127 | impl AstNode for TypeBoundList { | ||
3128 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3129 | match kind { | ||
3130 | TYPE_BOUND_LIST => true, | ||
3131 | _ => false, | ||
3132 | } | ||
3133 | } | ||
3134 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3135 | if Self::can_cast(syntax.kind()) { | ||
3136 | Some(Self { syntax }) | ||
3137 | } else { | ||
3138 | None | ||
3139 | } | ||
3140 | } | ||
3141 | fn syntax(&self) -> &SyntaxNode { | ||
3142 | &self.syntax | ||
3143 | } | ||
3144 | } | ||
3145 | impl TypeBoundList { | ||
3146 | pub fn bounds(&self) -> AstChildren<TypeBound> { | ||
3147 | AstChildren::new(&self.syntax) | ||
3148 | } | ||
3149 | } | ||
3150 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3151 | pub struct WherePred { | ||
3152 | pub(crate) syntax: SyntaxNode, | ||
3153 | } | ||
3154 | impl std::fmt::Display for WherePred { | ||
3155 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3156 | std::fmt::Display::fmt(self.syntax(), f) | ||
3157 | } | ||
3158 | } | ||
3159 | impl AstNode for WherePred { | ||
3160 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3161 | match kind { | ||
3162 | WHERE_PRED => true, | ||
3163 | _ => false, | ||
3164 | } | ||
3165 | } | ||
3166 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3167 | if Self::can_cast(syntax.kind()) { | ||
3168 | Some(Self { syntax }) | ||
3169 | } else { | ||
3170 | None | ||
3171 | } | ||
3172 | } | ||
3173 | fn syntax(&self) -> &SyntaxNode { | ||
3174 | &self.syntax | ||
3175 | } | ||
3176 | } | ||
3177 | impl ast::TypeBoundsOwner for WherePred {} | ||
3178 | impl WherePred { | ||
3179 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
3180 | AstChildren::new(&self.syntax).next() | ||
3181 | } | ||
3182 | } | ||
3183 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3184 | pub struct WhereClause { | ||
3185 | pub(crate) syntax: SyntaxNode, | ||
3186 | } | ||
3187 | impl std::fmt::Display for WhereClause { | ||
3188 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3189 | std::fmt::Display::fmt(self.syntax(), f) | ||
3190 | } | ||
3191 | } | ||
3192 | impl AstNode for WhereClause { | ||
3193 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3194 | match kind { | ||
3195 | WHERE_CLAUSE => true, | ||
3196 | _ => false, | ||
3197 | } | ||
3198 | } | ||
3199 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3200 | if Self::can_cast(syntax.kind()) { | ||
3201 | Some(Self { syntax }) | ||
3202 | } else { | ||
3203 | None | ||
3204 | } | ||
3205 | } | ||
3206 | fn syntax(&self) -> &SyntaxNode { | ||
3207 | &self.syntax | ||
3208 | } | ||
3209 | } | ||
3210 | impl WhereClause { | ||
3211 | pub fn predicates(&self) -> AstChildren<WherePred> { | ||
3212 | AstChildren::new(&self.syntax) | ||
3213 | } | ||
3214 | } | ||
3215 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3216 | pub struct ExprStmt { | ||
3217 | pub(crate) syntax: SyntaxNode, | ||
3218 | } | ||
3219 | impl std::fmt::Display for ExprStmt { | ||
3220 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3221 | std::fmt::Display::fmt(self.syntax(), f) | ||
3222 | } | ||
3223 | } | ||
3224 | impl AstNode for ExprStmt { | ||
3225 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3226 | match kind { | ||
3227 | EXPR_STMT => true, | ||
3228 | _ => false, | ||
3229 | } | ||
3230 | } | ||
3231 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3232 | if Self::can_cast(syntax.kind()) { | ||
3233 | Some(Self { syntax }) | ||
3234 | } else { | ||
3235 | None | ||
3236 | } | ||
3237 | } | ||
3238 | fn syntax(&self) -> &SyntaxNode { | ||
3239 | &self.syntax | ||
3240 | } | ||
3241 | } | ||
3242 | impl ExprStmt { | ||
3243 | pub fn expr(&self) -> Option<Expr> { | ||
3244 | AstChildren::new(&self.syntax).next() | ||
3245 | } | ||
3246 | } | ||
3247 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3248 | pub struct LetStmt { | ||
3249 | pub(crate) syntax: SyntaxNode, | ||
3250 | } | ||
3251 | impl std::fmt::Display for LetStmt { | ||
3252 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3253 | std::fmt::Display::fmt(self.syntax(), f) | ||
3254 | } | ||
3255 | } | ||
3256 | impl AstNode for LetStmt { | ||
3257 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3258 | match kind { | ||
3259 | LET_STMT => true, | ||
3260 | _ => false, | ||
3261 | } | ||
3262 | } | ||
3263 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3264 | if Self::can_cast(syntax.kind()) { | ||
3265 | Some(Self { syntax }) | ||
3266 | } else { | ||
3267 | None | ||
3268 | } | ||
3269 | } | ||
3270 | fn syntax(&self) -> &SyntaxNode { | ||
3271 | &self.syntax | ||
3272 | } | ||
3273 | } | ||
3274 | impl ast::TypeAscriptionOwner for LetStmt {} | ||
3275 | impl LetStmt { | ||
3276 | pub fn pat(&self) -> Option<Pat> { | ||
3277 | AstChildren::new(&self.syntax).next() | ||
3278 | } | ||
3279 | pub fn initializer(&self) -> Option<Expr> { | ||
3280 | AstChildren::new(&self.syntax).next() | ||
3281 | } | ||
3282 | } | ||
3283 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3284 | pub struct Condition { | ||
3285 | pub(crate) syntax: SyntaxNode, | ||
3286 | } | ||
3287 | impl std::fmt::Display for Condition { | ||
3288 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3289 | std::fmt::Display::fmt(self.syntax(), f) | ||
3290 | } | ||
3291 | } | ||
3292 | impl AstNode for Condition { | ||
3293 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3294 | match kind { | ||
3295 | CONDITION => true, | ||
3296 | _ => false, | ||
3297 | } | ||
3298 | } | ||
3299 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3300 | if Self::can_cast(syntax.kind()) { | ||
3301 | Some(Self { syntax }) | ||
3302 | } else { | ||
3303 | None | ||
3304 | } | ||
3305 | } | ||
3306 | fn syntax(&self) -> &SyntaxNode { | ||
3307 | &self.syntax | ||
3308 | } | ||
3309 | } | ||
3310 | impl Condition { | ||
3311 | pub fn pat(&self) -> Option<Pat> { | ||
3312 | AstChildren::new(&self.syntax).next() | ||
3313 | } | ||
3314 | pub fn expr(&self) -> Option<Expr> { | ||
3315 | AstChildren::new(&self.syntax).next() | ||
3316 | } | ||
3317 | } | ||
3318 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3319 | pub struct Block { | ||
3320 | pub(crate) syntax: SyntaxNode, | ||
3321 | } | ||
3322 | impl std::fmt::Display for Block { | ||
3323 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3324 | std::fmt::Display::fmt(self.syntax(), f) | ||
3325 | } | ||
3326 | } | ||
3327 | impl AstNode for Block { | ||
3328 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3329 | match kind { | ||
3330 | BLOCK => true, | ||
3331 | _ => false, | ||
3332 | } | ||
3333 | } | ||
3334 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3335 | if Self::can_cast(syntax.kind()) { | ||
3336 | Some(Self { syntax }) | ||
3337 | } else { | ||
3338 | None | ||
3339 | } | ||
3340 | } | ||
3341 | fn syntax(&self) -> &SyntaxNode { | ||
3342 | &self.syntax | ||
3343 | } | ||
3344 | } | ||
3345 | impl ast::AttrsOwner for Block {} | ||
3346 | impl ast::ModuleItemOwner for Block {} | ||
3347 | impl Block { | ||
3348 | pub fn statements(&self) -> AstChildren<Stmt> { | ||
3349 | AstChildren::new(&self.syntax) | ||
3350 | } | ||
3351 | pub fn expr(&self) -> Option<Expr> { | ||
3352 | AstChildren::new(&self.syntax).next() | ||
3353 | } | ||
3354 | } | ||
3355 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3356 | pub struct ParamList { | ||
3357 | pub(crate) syntax: SyntaxNode, | ||
3358 | } | ||
3359 | impl std::fmt::Display for ParamList { | ||
3360 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3361 | std::fmt::Display::fmt(self.syntax(), f) | ||
3362 | } | ||
3363 | } | ||
3364 | impl AstNode for ParamList { | ||
3365 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3366 | match kind { | ||
3367 | PARAM_LIST => true, | ||
3368 | _ => false, | ||
3369 | } | ||
3370 | } | ||
3371 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3372 | if Self::can_cast(syntax.kind()) { | ||
3373 | Some(Self { syntax }) | ||
3374 | } else { | ||
3375 | None | ||
3376 | } | ||
3377 | } | ||
3378 | fn syntax(&self) -> &SyntaxNode { | ||
3379 | &self.syntax | ||
3380 | } | ||
3381 | } | ||
3382 | impl ParamList { | ||
3383 | pub fn self_param(&self) -> Option<SelfParam> { | ||
3384 | AstChildren::new(&self.syntax).next() | ||
3385 | } | ||
3386 | pub fn params(&self) -> AstChildren<Param> { | ||
3387 | AstChildren::new(&self.syntax) | ||
3388 | } | ||
3389 | } | ||
3390 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3391 | pub struct SelfParam { | ||
3392 | pub(crate) syntax: SyntaxNode, | ||
3393 | } | ||
3394 | impl std::fmt::Display for SelfParam { | ||
3395 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3396 | std::fmt::Display::fmt(self.syntax(), f) | ||
3397 | } | ||
3398 | } | ||
3399 | impl AstNode for SelfParam { | ||
3400 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3401 | match kind { | ||
3402 | SELF_PARAM => true, | ||
3403 | _ => false, | ||
3404 | } | ||
3405 | } | ||
3406 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3407 | if Self::can_cast(syntax.kind()) { | ||
3408 | Some(Self { syntax }) | ||
3409 | } else { | ||
3410 | None | ||
3411 | } | ||
3412 | } | ||
3413 | fn syntax(&self) -> &SyntaxNode { | ||
3414 | &self.syntax | ||
3415 | } | ||
3416 | } | ||
3417 | impl ast::TypeAscriptionOwner for SelfParam {} | ||
3418 | impl ast::AttrsOwner for SelfParam {} | ||
3419 | impl SelfParam {} | ||
3420 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3421 | pub struct Param { | ||
3422 | pub(crate) syntax: SyntaxNode, | ||
3423 | } | ||
3424 | impl std::fmt::Display for Param { | ||
3425 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3426 | std::fmt::Display::fmt(self.syntax(), f) | ||
3427 | } | ||
3428 | } | ||
3429 | impl AstNode for Param { | ||
3430 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3431 | match kind { | ||
3432 | PARAM => true, | ||
3433 | _ => false, | ||
3434 | } | ||
3435 | } | ||
3436 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3437 | if Self::can_cast(syntax.kind()) { | ||
3438 | Some(Self { syntax }) | ||
3439 | } else { | ||
3440 | None | ||
3441 | } | ||
3442 | } | ||
3443 | fn syntax(&self) -> &SyntaxNode { | ||
3444 | &self.syntax | ||
3445 | } | ||
3446 | } | ||
3447 | impl ast::TypeAscriptionOwner for Param {} | ||
3448 | impl ast::AttrsOwner for Param {} | ||
3449 | impl Param { | ||
3450 | pub fn pat(&self) -> Option<Pat> { | ||
3451 | AstChildren::new(&self.syntax).next() | ||
3452 | } | ||
3453 | } | ||
3454 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3455 | pub struct UseItem { | ||
3456 | pub(crate) syntax: SyntaxNode, | ||
3457 | } | ||
3458 | impl std::fmt::Display for UseItem { | ||
3459 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3460 | std::fmt::Display::fmt(self.syntax(), f) | ||
3461 | } | ||
3462 | } | ||
3463 | impl AstNode for UseItem { | ||
3464 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3465 | match kind { | ||
3466 | USE_ITEM => true, | ||
3467 | _ => false, | ||
3468 | } | ||
3469 | } | ||
3470 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3471 | if Self::can_cast(syntax.kind()) { | ||
3472 | Some(Self { syntax }) | ||
3473 | } else { | ||
3474 | None | ||
3475 | } | ||
3476 | } | ||
3477 | fn syntax(&self) -> &SyntaxNode { | ||
3478 | &self.syntax | ||
3479 | } | ||
3480 | } | ||
3481 | impl ast::AttrsOwner for UseItem {} | ||
3482 | impl ast::VisibilityOwner for UseItem {} | ||
3483 | impl UseItem { | ||
3484 | pub fn use_tree(&self) -> Option<UseTree> { | ||
3485 | AstChildren::new(&self.syntax).next() | ||
3486 | } | ||
3487 | } | ||
3488 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3489 | pub struct UseTree { | ||
3490 | pub(crate) syntax: SyntaxNode, | ||
3491 | } | ||
3492 | impl std::fmt::Display for UseTree { | ||
3493 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3494 | std::fmt::Display::fmt(self.syntax(), f) | ||
3495 | } | ||
3496 | } | ||
3497 | impl AstNode for UseTree { | ||
3498 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3499 | match kind { | ||
3500 | USE_TREE => true, | ||
3501 | _ => false, | ||
3502 | } | ||
3503 | } | ||
3504 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3505 | if Self::can_cast(syntax.kind()) { | ||
3506 | Some(Self { syntax }) | ||
3507 | } else { | ||
3508 | None | ||
3509 | } | ||
3510 | } | ||
3511 | fn syntax(&self) -> &SyntaxNode { | ||
3512 | &self.syntax | ||
3513 | } | ||
3514 | } | ||
3515 | impl UseTree { | ||
3516 | pub fn path(&self) -> Option<Path> { | ||
3517 | AstChildren::new(&self.syntax).next() | ||
3518 | } | ||
3519 | pub fn use_tree_list(&self) -> Option<UseTreeList> { | ||
3520 | AstChildren::new(&self.syntax).next() | ||
3521 | } | ||
3522 | pub fn alias(&self) -> Option<Alias> { | ||
3523 | AstChildren::new(&self.syntax).next() | ||
3524 | } | ||
3525 | } | ||
3526 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3527 | pub struct Alias { | ||
3528 | pub(crate) syntax: SyntaxNode, | ||
3529 | } | ||
3530 | impl std::fmt::Display for Alias { | ||
3531 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3532 | std::fmt::Display::fmt(self.syntax(), f) | ||
3533 | } | ||
3534 | } | ||
3535 | impl AstNode for Alias { | ||
3536 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3537 | match kind { | ||
3538 | ALIAS => true, | ||
3539 | _ => false, | ||
3540 | } | ||
3541 | } | ||
3542 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3543 | if Self::can_cast(syntax.kind()) { | ||
3544 | Some(Self { syntax }) | ||
3545 | } else { | ||
3546 | None | ||
3547 | } | ||
3548 | } | ||
3549 | fn syntax(&self) -> &SyntaxNode { | ||
3550 | &self.syntax | ||
3551 | } | ||
3552 | } | ||
3553 | impl ast::NameOwner for Alias {} | ||
3554 | impl Alias {} | ||
3555 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3556 | pub struct UseTreeList { | ||
3557 | pub(crate) syntax: SyntaxNode, | ||
3558 | } | ||
3559 | impl std::fmt::Display for UseTreeList { | ||
3560 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3561 | std::fmt::Display::fmt(self.syntax(), f) | ||
3562 | } | ||
3563 | } | ||
3564 | impl AstNode for UseTreeList { | ||
3565 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3566 | match kind { | ||
3567 | USE_TREE_LIST => true, | ||
3568 | _ => false, | ||
3569 | } | ||
3570 | } | ||
3571 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3572 | if Self::can_cast(syntax.kind()) { | ||
3573 | Some(Self { syntax }) | ||
3574 | } else { | ||
3575 | None | ||
3576 | } | ||
3577 | } | ||
3578 | fn syntax(&self) -> &SyntaxNode { | ||
3579 | &self.syntax | ||
3580 | } | ||
3581 | } | ||
3582 | impl UseTreeList { | ||
3583 | pub fn use_trees(&self) -> AstChildren<UseTree> { | ||
3584 | AstChildren::new(&self.syntax) | ||
3585 | } | ||
3586 | } | ||
3587 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3588 | pub struct ExternCrateItem { | ||
3589 | pub(crate) syntax: SyntaxNode, | ||
3590 | } | ||
3591 | impl std::fmt::Display for ExternCrateItem { | ||
3592 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3593 | std::fmt::Display::fmt(self.syntax(), f) | ||
3594 | } | ||
3595 | } | ||
3596 | impl AstNode for ExternCrateItem { | ||
3597 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3598 | match kind { | ||
3599 | EXTERN_CRATE_ITEM => true, | ||
3600 | _ => false, | ||
3601 | } | ||
3602 | } | ||
3603 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3604 | if Self::can_cast(syntax.kind()) { | ||
3605 | Some(Self { syntax }) | ||
3606 | } else { | ||
3607 | None | ||
3608 | } | ||
3609 | } | ||
3610 | fn syntax(&self) -> &SyntaxNode { | ||
3611 | &self.syntax | ||
3612 | } | ||
3613 | } | ||
3614 | impl ast::AttrsOwner for ExternCrateItem {} | ||
3615 | impl ast::VisibilityOwner for ExternCrateItem {} | ||
3616 | impl ExternCrateItem { | ||
3617 | pub fn name_ref(&self) -> Option<NameRef> { | ||
3618 | AstChildren::new(&self.syntax).next() | ||
3619 | } | ||
3620 | pub fn alias(&self) -> Option<Alias> { | ||
3621 | AstChildren::new(&self.syntax).next() | ||
3622 | } | ||
3623 | } | ||
3624 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3625 | pub struct ArgList { | ||
3626 | pub(crate) syntax: SyntaxNode, | ||
3627 | } | ||
3628 | impl std::fmt::Display for ArgList { | ||
3629 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3630 | std::fmt::Display::fmt(self.syntax(), f) | ||
3631 | } | ||
3632 | } | ||
3633 | impl AstNode for ArgList { | ||
3634 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3635 | match kind { | ||
3636 | ARG_LIST => true, | ||
3637 | _ => false, | ||
3638 | } | ||
3639 | } | ||
3640 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3641 | if Self::can_cast(syntax.kind()) { | ||
3642 | Some(Self { syntax }) | ||
3643 | } else { | ||
3644 | None | ||
3645 | } | ||
3646 | } | ||
3647 | fn syntax(&self) -> &SyntaxNode { | ||
3648 | &self.syntax | ||
3649 | } | ||
3650 | } | ||
3651 | impl ArgList { | ||
3652 | pub fn args(&self) -> AstChildren<Expr> { | ||
3653 | AstChildren::new(&self.syntax) | ||
3654 | } | ||
3655 | } | ||
3656 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3657 | pub struct Path { | ||
3658 | pub(crate) syntax: SyntaxNode, | ||
3659 | } | ||
3660 | impl std::fmt::Display for Path { | ||
3661 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3662 | std::fmt::Display::fmt(self.syntax(), f) | ||
3663 | } | ||
3664 | } | ||
3665 | impl AstNode for Path { | ||
3666 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3667 | match kind { | ||
3668 | PATH => true, | ||
3669 | _ => false, | ||
3670 | } | ||
3671 | } | ||
3672 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3673 | if Self::can_cast(syntax.kind()) { | ||
3674 | Some(Self { syntax }) | ||
3675 | } else { | ||
3676 | None | ||
3677 | } | ||
3678 | } | ||
3679 | fn syntax(&self) -> &SyntaxNode { | ||
3680 | &self.syntax | ||
3681 | } | ||
3682 | } | ||
3683 | impl Path { | ||
3684 | pub fn segment(&self) -> Option<PathSegment> { | ||
3685 | AstChildren::new(&self.syntax).next() | ||
3686 | } | ||
3687 | pub fn qualifier(&self) -> Option<Path> { | ||
3688 | AstChildren::new(&self.syntax).next() | ||
3689 | } | ||
3690 | } | ||
3691 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3692 | pub struct PathSegment { | ||
3693 | pub(crate) syntax: SyntaxNode, | ||
3694 | } | ||
3695 | impl std::fmt::Display for PathSegment { | ||
3696 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3697 | std::fmt::Display::fmt(self.syntax(), f) | ||
3698 | } | ||
3699 | } | ||
3700 | impl AstNode for PathSegment { | ||
3701 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3702 | match kind { | ||
3703 | PATH_SEGMENT => true, | ||
3704 | _ => false, | ||
3705 | } | ||
3706 | } | ||
3707 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3708 | if Self::can_cast(syntax.kind()) { | ||
3709 | Some(Self { syntax }) | ||
3710 | } else { | ||
3711 | None | ||
3712 | } | ||
3713 | } | ||
3714 | fn syntax(&self) -> &SyntaxNode { | ||
3715 | &self.syntax | ||
3716 | } | ||
3717 | } | ||
3718 | impl PathSegment { | ||
3719 | pub fn name_ref(&self) -> Option<NameRef> { | ||
3720 | AstChildren::new(&self.syntax).next() | ||
3721 | } | ||
3722 | pub fn type_arg_list(&self) -> Option<TypeArgList> { | ||
3723 | AstChildren::new(&self.syntax).next() | ||
3724 | } | ||
3725 | pub fn param_list(&self) -> Option<ParamList> { | ||
3726 | AstChildren::new(&self.syntax).next() | ||
3727 | } | ||
3728 | pub fn ret_type(&self) -> Option<RetType> { | ||
3729 | AstChildren::new(&self.syntax).next() | ||
3730 | } | ||
3731 | pub fn path_type(&self) -> Option<PathType> { | ||
3732 | AstChildren::new(&self.syntax).next() | ||
3733 | } | ||
3734 | } | ||
3735 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3736 | pub struct TypeArgList { | ||
3737 | pub(crate) syntax: SyntaxNode, | ||
3738 | } | ||
3739 | impl std::fmt::Display for TypeArgList { | ||
3740 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3741 | std::fmt::Display::fmt(self.syntax(), f) | ||
3742 | } | ||
3743 | } | ||
3744 | impl AstNode for TypeArgList { | ||
3745 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3746 | match kind { | ||
3747 | TYPE_ARG_LIST => true, | ||
3748 | _ => false, | ||
3749 | } | ||
3750 | } | ||
3751 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3752 | if Self::can_cast(syntax.kind()) { | ||
3753 | Some(Self { syntax }) | ||
3754 | } else { | ||
3755 | None | ||
3756 | } | ||
3757 | } | ||
3758 | fn syntax(&self) -> &SyntaxNode { | ||
3759 | &self.syntax | ||
3760 | } | ||
3761 | } | ||
3762 | impl TypeArgList { | ||
3763 | pub fn type_args(&self) -> AstChildren<TypeArg> { | ||
3764 | AstChildren::new(&self.syntax) | ||
3765 | } | ||
3766 | pub fn lifetime_args(&self) -> AstChildren<LifetimeArg> { | ||
3767 | AstChildren::new(&self.syntax) | ||
3768 | } | ||
3769 | pub fn assoc_type_args(&self) -> AstChildren<AssocTypeArg> { | ||
3770 | AstChildren::new(&self.syntax) | ||
3771 | } | ||
3772 | pub fn const_arg(&self) -> AstChildren<ConstArg> { | ||
3773 | AstChildren::new(&self.syntax) | ||
3774 | } | ||
3775 | } | ||
3776 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3777 | pub struct TypeArg { | ||
3778 | pub(crate) syntax: SyntaxNode, | ||
3779 | } | ||
3780 | impl std::fmt::Display for TypeArg { | ||
3781 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3782 | std::fmt::Display::fmt(self.syntax(), f) | ||
3783 | } | ||
3784 | } | ||
3785 | impl AstNode for TypeArg { | ||
3786 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3787 | match kind { | ||
3788 | TYPE_ARG => true, | ||
3789 | _ => false, | ||
3790 | } | ||
3791 | } | ||
3792 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3793 | if Self::can_cast(syntax.kind()) { | ||
3794 | Some(Self { syntax }) | ||
3795 | } else { | ||
3796 | None | ||
3797 | } | ||
3798 | } | ||
3799 | fn syntax(&self) -> &SyntaxNode { | ||
3800 | &self.syntax | ||
3801 | } | ||
3802 | } | ||
3803 | impl TypeArg { | ||
3804 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
3805 | AstChildren::new(&self.syntax).next() | ||
3806 | } | ||
3807 | } | ||
3808 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3809 | pub struct AssocTypeArg { | ||
3810 | pub(crate) syntax: SyntaxNode, | ||
3811 | } | ||
3812 | impl std::fmt::Display for AssocTypeArg { | ||
3813 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3814 | std::fmt::Display::fmt(self.syntax(), f) | ||
3815 | } | ||
3816 | } | ||
3817 | impl AstNode for AssocTypeArg { | ||
3818 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3819 | match kind { | ||
3820 | ASSOC_TYPE_ARG => true, | ||
3821 | _ => false, | ||
3822 | } | ||
3823 | } | ||
3824 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3825 | if Self::can_cast(syntax.kind()) { | ||
3826 | Some(Self { syntax }) | ||
3827 | } else { | ||
3828 | None | ||
3829 | } | ||
3830 | } | ||
3831 | fn syntax(&self) -> &SyntaxNode { | ||
3832 | &self.syntax | ||
3833 | } | ||
3834 | } | ||
3835 | impl AssocTypeArg { | ||
3836 | pub fn name_ref(&self) -> Option<NameRef> { | ||
3837 | AstChildren::new(&self.syntax).next() | ||
3838 | } | ||
3839 | pub fn type_ref(&self) -> Option<TypeRef> { | ||
3840 | AstChildren::new(&self.syntax).next() | ||
3841 | } | ||
3842 | } | ||
3843 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3844 | pub struct LifetimeArg { | ||
3845 | pub(crate) syntax: SyntaxNode, | ||
3846 | } | ||
3847 | impl std::fmt::Display for LifetimeArg { | ||
3848 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3849 | std::fmt::Display::fmt(self.syntax(), f) | ||
3850 | } | ||
3851 | } | ||
3852 | impl AstNode for LifetimeArg { | ||
3853 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3854 | match kind { | ||
3855 | LIFETIME_ARG => true, | ||
3856 | _ => false, | ||
3857 | } | ||
3858 | } | ||
3859 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3860 | if Self::can_cast(syntax.kind()) { | ||
3861 | Some(Self { syntax }) | ||
3862 | } else { | ||
3863 | None | ||
3864 | } | ||
3865 | } | ||
3866 | fn syntax(&self) -> &SyntaxNode { | ||
3867 | &self.syntax | ||
3868 | } | ||
3869 | } | ||
3870 | impl LifetimeArg {} | ||
3871 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3872 | pub struct ConstArg { | ||
3873 | pub(crate) syntax: SyntaxNode, | ||
3874 | } | ||
3875 | impl std::fmt::Display for ConstArg { | ||
3876 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3877 | std::fmt::Display::fmt(self.syntax(), f) | ||
3878 | } | ||
3879 | } | ||
3880 | impl AstNode for ConstArg { | ||
3881 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3882 | match kind { | ||
3883 | CONST_ARG => true, | ||
3884 | _ => false, | ||
3885 | } | ||
3886 | } | ||
3887 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3888 | if Self::can_cast(syntax.kind()) { | ||
3889 | Some(Self { syntax }) | ||
3890 | } else { | ||
3891 | None | ||
3892 | } | ||
3893 | } | ||
3894 | fn syntax(&self) -> &SyntaxNode { | ||
3895 | &self.syntax | ||
3896 | } | ||
3897 | } | ||
3898 | impl ConstArg { | ||
3899 | pub fn literal(&self) -> Option<Literal> { | ||
3900 | AstChildren::new(&self.syntax).next() | ||
3901 | } | ||
3902 | pub fn block_expr(&self) -> Option<BlockExpr> { | ||
3903 | AstChildren::new(&self.syntax).next() | ||
3904 | } | ||
3905 | } | ||
3906 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3907 | pub struct MacroItems { | ||
3908 | pub(crate) syntax: SyntaxNode, | ||
3909 | } | ||
3910 | impl std::fmt::Display for MacroItems { | ||
3911 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3912 | std::fmt::Display::fmt(self.syntax(), f) | ||
3913 | } | ||
3914 | } | ||
3915 | impl AstNode for MacroItems { | ||
3916 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3917 | match kind { | ||
3918 | MACRO_ITEMS => true, | ||
3919 | _ => false, | ||
3920 | } | ||
3921 | } | ||
3922 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3923 | if Self::can_cast(syntax.kind()) { | ||
3924 | Some(Self { syntax }) | ||
3925 | } else { | ||
3926 | None | ||
3927 | } | ||
3928 | } | ||
3929 | fn syntax(&self) -> &SyntaxNode { | ||
3930 | &self.syntax | ||
3931 | } | ||
3932 | } | ||
3933 | impl ast::ModuleItemOwner for MacroItems {} | ||
3934 | impl ast::FnDefOwner for MacroItems {} | ||
3935 | impl MacroItems {} | ||
3936 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3937 | pub struct MacroStmts { | ||
3938 | pub(crate) syntax: SyntaxNode, | ||
3939 | } | ||
3940 | impl std::fmt::Display for MacroStmts { | ||
3941 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3942 | std::fmt::Display::fmt(self.syntax(), f) | ||
3943 | } | ||
3944 | } | ||
3945 | impl AstNode for MacroStmts { | ||
3946 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3947 | match kind { | ||
3948 | MACRO_STMTS => true, | ||
3949 | _ => false, | ||
3950 | } | ||
3951 | } | ||
3952 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3953 | if Self::can_cast(syntax.kind()) { | ||
3954 | Some(Self { syntax }) | ||
3955 | } else { | ||
3956 | None | ||
3957 | } | ||
3958 | } | ||
3959 | fn syntax(&self) -> &SyntaxNode { | ||
3960 | &self.syntax | ||
3961 | } | ||
3962 | } | ||
3963 | impl MacroStmts { | ||
3964 | pub fn statements(&self) -> AstChildren<Stmt> { | ||
3965 | AstChildren::new(&self.syntax) | ||
3966 | } | ||
3967 | pub fn expr(&self) -> Option<Expr> { | ||
3968 | AstChildren::new(&self.syntax).next() | ||
3969 | } | ||
3970 | } | ||
3971 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3972 | pub enum NominalDef { | ||
3973 | StructDef(StructDef), | ||
3974 | EnumDef(EnumDef), | ||
3975 | UnionDef(UnionDef), | ||
3976 | } | ||
3977 | impl From<StructDef> for NominalDef { | ||
3978 | fn from(node: StructDef) -> NominalDef { | ||
3979 | NominalDef::StructDef(node) | ||
3980 | } | ||
3981 | } | ||
3982 | impl From<EnumDef> for NominalDef { | ||
3983 | fn from(node: EnumDef) -> NominalDef { | ||
3984 | NominalDef::EnumDef(node) | ||
3985 | } | ||
3986 | } | ||
3987 | impl From<UnionDef> for NominalDef { | ||
3988 | fn from(node: UnionDef) -> NominalDef { | ||
3989 | NominalDef::UnionDef(node) | ||
3990 | } | ||
3991 | } | ||
3992 | impl std::fmt::Display for NominalDef { | ||
3993 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3994 | std::fmt::Display::fmt(self.syntax(), f) | ||
3995 | } | ||
3996 | } | ||
3997 | impl AstNode for NominalDef { | ||
3998 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3999 | match kind { | ||
4000 | STRUCT_DEF | ENUM_DEF | UNION_DEF => true, | ||
4001 | _ => false, | ||
4002 | } | ||
4003 | } | ||
4004 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
4005 | let res = match syntax.kind() { | ||
4006 | STRUCT_DEF => NominalDef::StructDef(StructDef { syntax }), | ||
4007 | ENUM_DEF => NominalDef::EnumDef(EnumDef { syntax }), | ||
4008 | UNION_DEF => NominalDef::UnionDef(UnionDef { syntax }), | ||
4009 | _ => return None, | ||
4010 | }; | ||
4011 | Some(res) | ||
4012 | } | ||
4013 | fn syntax(&self) -> &SyntaxNode { | ||
4014 | match self { | ||
4015 | NominalDef::StructDef(it) => &it.syntax, | ||
4016 | NominalDef::EnumDef(it) => &it.syntax, | ||
4017 | NominalDef::UnionDef(it) => &it.syntax, | ||
4018 | } | ||
4019 | } | ||
4020 | } | ||
4021 | impl ast::NameOwner for NominalDef {} | ||
4022 | impl ast::TypeParamsOwner for NominalDef {} | ||
4023 | impl ast::AttrsOwner for NominalDef {} | ||
4024 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
4025 | pub enum TypeRef { | ||
4026 | ParenType(ParenType), | ||
4027 | TupleType(TupleType), | ||
4028 | NeverType(NeverType), | ||
4029 | PathType(PathType), | ||
4030 | PointerType(PointerType), | ||
4031 | ArrayType(ArrayType), | ||
4032 | SliceType(SliceType), | ||
4033 | ReferenceType(ReferenceType), | ||
4034 | PlaceholderType(PlaceholderType), | ||
4035 | FnPointerType(FnPointerType), | ||
4036 | ForType(ForType), | ||
4037 | ImplTraitType(ImplTraitType), | ||
4038 | DynTraitType(DynTraitType), | ||
4039 | } | ||
4040 | impl From<ParenType> for TypeRef { | ||
4041 | fn from(node: ParenType) -> TypeRef { | ||
4042 | TypeRef::ParenType(node) | ||
4043 | } | ||
4044 | } | ||
4045 | impl From<TupleType> for TypeRef { | ||
4046 | fn from(node: TupleType) -> TypeRef { | ||
4047 | TypeRef::TupleType(node) | ||
4048 | } | ||
4049 | } | ||
4050 | impl From<NeverType> for TypeRef { | ||
4051 | fn from(node: NeverType) -> TypeRef { | ||
4052 | TypeRef::NeverType(node) | ||
4053 | } | ||
4054 | } | ||
4055 | impl From<PathType> for TypeRef { | ||
4056 | fn from(node: PathType) -> TypeRef { | ||
4057 | TypeRef::PathType(node) | ||
4058 | } | ||
4059 | } | ||
4060 | impl From<PointerType> for TypeRef { | ||
4061 | fn from(node: PointerType) -> TypeRef { | ||
4062 | TypeRef::PointerType(node) | ||
4063 | } | ||
4064 | } | ||
4065 | impl From<ArrayType> for TypeRef { | ||
4066 | fn from(node: ArrayType) -> TypeRef { | ||
4067 | TypeRef::ArrayType(node) | ||
4068 | } | ||
4069 | } | ||
4070 | impl From<SliceType> for TypeRef { | ||
4071 | fn from(node: SliceType) -> TypeRef { | ||
4072 | TypeRef::SliceType(node) | ||
4073 | } | ||
4074 | } | ||
4075 | impl From<ReferenceType> for TypeRef { | ||
4076 | fn from(node: ReferenceType) -> TypeRef { | ||
4077 | TypeRef::ReferenceType(node) | ||
4078 | } | ||
4079 | } | ||
4080 | impl From<PlaceholderType> for TypeRef { | ||
4081 | fn from(node: PlaceholderType) -> TypeRef { | ||
4082 | TypeRef::PlaceholderType(node) | ||
4083 | } | ||
4084 | } | ||
4085 | impl From<FnPointerType> for TypeRef { | ||
4086 | fn from(node: FnPointerType) -> TypeRef { | ||
4087 | TypeRef::FnPointerType(node) | ||
4088 | } | ||
4089 | } | ||
4090 | impl From<ForType> for TypeRef { | ||
4091 | fn from(node: ForType) -> TypeRef { | ||
4092 | TypeRef::ForType(node) | ||
4093 | } | ||
4094 | } | ||
4095 | impl From<ImplTraitType> for TypeRef { | ||
4096 | fn from(node: ImplTraitType) -> TypeRef { | ||
4097 | TypeRef::ImplTraitType(node) | ||
4098 | } | ||
4099 | } | ||
4100 | impl From<DynTraitType> for TypeRef { | ||
4101 | fn from(node: DynTraitType) -> TypeRef { | ||
4102 | TypeRef::DynTraitType(node) | ||
4103 | } | ||
4104 | } | ||
4105 | impl std::fmt::Display for TypeRef { | ||
4106 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4107 | std::fmt::Display::fmt(self.syntax(), f) | ||
4108 | } | ||
4109 | } | ||
4110 | impl AstNode for TypeRef { | ||
4111 | fn can_cast(kind: SyntaxKind) -> bool { | ||
4112 | match kind { | ||
4113 | PAREN_TYPE | TUPLE_TYPE | NEVER_TYPE | PATH_TYPE | POINTER_TYPE | ARRAY_TYPE | ||
4114 | | SLICE_TYPE | REFERENCE_TYPE | PLACEHOLDER_TYPE | FN_POINTER_TYPE | FOR_TYPE | ||
4115 | | IMPL_TRAIT_TYPE | DYN_TRAIT_TYPE => true, | ||
4116 | _ => false, | ||
4117 | } | ||
4118 | } | ||
4119 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
4120 | let res = match syntax.kind() { | ||
4121 | PAREN_TYPE => TypeRef::ParenType(ParenType { syntax }), | ||
4122 | TUPLE_TYPE => TypeRef::TupleType(TupleType { syntax }), | ||
4123 | NEVER_TYPE => TypeRef::NeverType(NeverType { syntax }), | ||
4124 | PATH_TYPE => TypeRef::PathType(PathType { syntax }), | ||
4125 | POINTER_TYPE => TypeRef::PointerType(PointerType { syntax }), | ||
4126 | ARRAY_TYPE => TypeRef::ArrayType(ArrayType { syntax }), | ||
4127 | SLICE_TYPE => TypeRef::SliceType(SliceType { syntax }), | ||
4128 | REFERENCE_TYPE => TypeRef::ReferenceType(ReferenceType { syntax }), | ||
4129 | PLACEHOLDER_TYPE => TypeRef::PlaceholderType(PlaceholderType { syntax }), | ||
4130 | FN_POINTER_TYPE => TypeRef::FnPointerType(FnPointerType { syntax }), | ||
4131 | FOR_TYPE => TypeRef::ForType(ForType { syntax }), | ||
4132 | IMPL_TRAIT_TYPE => TypeRef::ImplTraitType(ImplTraitType { syntax }), | ||
4133 | DYN_TRAIT_TYPE => TypeRef::DynTraitType(DynTraitType { syntax }), | ||
4134 | _ => return None, | ||
4135 | }; | ||
4136 | Some(res) | ||
4137 | } | ||
4138 | fn syntax(&self) -> &SyntaxNode { | ||
4139 | match self { | ||
4140 | TypeRef::ParenType(it) => &it.syntax, | ||
4141 | TypeRef::TupleType(it) => &it.syntax, | ||
4142 | TypeRef::NeverType(it) => &it.syntax, | ||
4143 | TypeRef::PathType(it) => &it.syntax, | ||
4144 | TypeRef::PointerType(it) => &it.syntax, | ||
4145 | TypeRef::ArrayType(it) => &it.syntax, | ||
4146 | TypeRef::SliceType(it) => &it.syntax, | ||
4147 | TypeRef::ReferenceType(it) => &it.syntax, | ||
4148 | TypeRef::PlaceholderType(it) => &it.syntax, | ||
4149 | TypeRef::FnPointerType(it) => &it.syntax, | ||
4150 | TypeRef::ForType(it) => &it.syntax, | ||
4151 | TypeRef::ImplTraitType(it) => &it.syntax, | ||
4152 | TypeRef::DynTraitType(it) => &it.syntax, | ||
4153 | } | ||
4154 | } | ||
4155 | } | ||
4156 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
4157 | pub enum ModuleItem { | ||
4158 | StructDef(StructDef), | ||
4159 | UnionDef(UnionDef), | ||
4160 | EnumDef(EnumDef), | ||
4161 | FnDef(FnDef), | ||
4162 | TraitDef(TraitDef), | ||
4163 | TypeAliasDef(TypeAliasDef), | ||
4164 | ImplDef(ImplDef), | ||
4165 | UseItem(UseItem), | ||
4166 | ExternCrateItem(ExternCrateItem), | ||
4167 | ConstDef(ConstDef), | ||
4168 | StaticDef(StaticDef), | ||
4169 | Module(Module), | ||
4170 | MacroCall(MacroCall), | ||
4171 | } | ||
4172 | impl From<StructDef> for ModuleItem { | ||
4173 | fn from(node: StructDef) -> ModuleItem { | ||
4174 | ModuleItem::StructDef(node) | ||
4175 | } | ||
4176 | } | ||
4177 | impl From<UnionDef> for ModuleItem { | ||
4178 | fn from(node: UnionDef) -> ModuleItem { | ||
4179 | ModuleItem::UnionDef(node) | ||
4180 | } | ||
4181 | } | ||
4182 | impl From<EnumDef> for ModuleItem { | ||
4183 | fn from(node: EnumDef) -> ModuleItem { | ||
4184 | ModuleItem::EnumDef(node) | ||
4185 | } | ||
4186 | } | ||
4187 | impl From<FnDef> for ModuleItem { | ||
4188 | fn from(node: FnDef) -> ModuleItem { | ||
4189 | ModuleItem::FnDef(node) | ||
4190 | } | ||
4191 | } | ||
4192 | impl From<TraitDef> for ModuleItem { | ||
4193 | fn from(node: TraitDef) -> ModuleItem { | ||
4194 | ModuleItem::TraitDef(node) | ||
4195 | } | ||
4196 | } | ||
4197 | impl From<TypeAliasDef> for ModuleItem { | ||
4198 | fn from(node: TypeAliasDef) -> ModuleItem { | ||
4199 | ModuleItem::TypeAliasDef(node) | ||
4200 | } | ||
4201 | } | ||
4202 | impl From<ImplDef> for ModuleItem { | ||
4203 | fn from(node: ImplDef) -> ModuleItem { | ||
4204 | ModuleItem::ImplDef(node) | ||
4205 | } | ||
4206 | } | ||
4207 | impl From<UseItem> for ModuleItem { | ||
4208 | fn from(node: UseItem) -> ModuleItem { | ||
4209 | ModuleItem::UseItem(node) | ||
4210 | } | ||
4211 | } | ||
4212 | impl From<ExternCrateItem> for ModuleItem { | ||
4213 | fn from(node: ExternCrateItem) -> ModuleItem { | ||
4214 | ModuleItem::ExternCrateItem(node) | ||
4215 | } | ||
4216 | } | ||
4217 | impl From<ConstDef> for ModuleItem { | ||
4218 | fn from(node: ConstDef) -> ModuleItem { | ||
4219 | ModuleItem::ConstDef(node) | ||
4220 | } | ||
4221 | } | ||
4222 | impl From<StaticDef> for ModuleItem { | ||
4223 | fn from(node: StaticDef) -> ModuleItem { | ||
4224 | ModuleItem::StaticDef(node) | ||
4225 | } | ||
4226 | } | ||
4227 | impl From<Module> for ModuleItem { | ||
4228 | fn from(node: Module) -> ModuleItem { | ||
4229 | ModuleItem::Module(node) | ||
4230 | } | ||
4231 | } | ||
4232 | impl From<MacroCall> for ModuleItem { | ||
4233 | fn from(node: MacroCall) -> ModuleItem { | ||
4234 | ModuleItem::MacroCall(node) | ||
4235 | } | ||
4236 | } | ||
4237 | impl std::fmt::Display for ModuleItem { | ||
4238 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4239 | std::fmt::Display::fmt(self.syntax(), f) | ||
4240 | } | ||
4241 | } | ||
4242 | impl AstNode for ModuleItem { | ||
4243 | fn can_cast(kind: SyntaxKind) -> bool { | ||
4244 | match kind { | ||
4245 | STRUCT_DEF | UNION_DEF | ENUM_DEF | FN_DEF | TRAIT_DEF | TYPE_ALIAS_DEF | IMPL_DEF | ||
4246 | | USE_ITEM | EXTERN_CRATE_ITEM | CONST_DEF | STATIC_DEF | MODULE | MACRO_CALL => true, | ||
4247 | _ => false, | ||
4248 | } | ||
4249 | } | ||
4250 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
4251 | let res = match syntax.kind() { | ||
4252 | STRUCT_DEF => ModuleItem::StructDef(StructDef { syntax }), | ||
4253 | UNION_DEF => ModuleItem::UnionDef(UnionDef { syntax }), | ||
4254 | ENUM_DEF => ModuleItem::EnumDef(EnumDef { syntax }), | ||
4255 | FN_DEF => ModuleItem::FnDef(FnDef { syntax }), | ||
4256 | TRAIT_DEF => ModuleItem::TraitDef(TraitDef { syntax }), | ||
4257 | TYPE_ALIAS_DEF => ModuleItem::TypeAliasDef(TypeAliasDef { syntax }), | ||
4258 | IMPL_DEF => ModuleItem::ImplDef(ImplDef { syntax }), | ||
4259 | USE_ITEM => ModuleItem::UseItem(UseItem { syntax }), | ||
4260 | EXTERN_CRATE_ITEM => ModuleItem::ExternCrateItem(ExternCrateItem { syntax }), | ||
4261 | CONST_DEF => ModuleItem::ConstDef(ConstDef { syntax }), | ||
4262 | STATIC_DEF => ModuleItem::StaticDef(StaticDef { syntax }), | ||
4263 | MODULE => ModuleItem::Module(Module { syntax }), | ||
4264 | MACRO_CALL => ModuleItem::MacroCall(MacroCall { syntax }), | ||
4265 | _ => return None, | ||
4266 | }; | ||
4267 | Some(res) | ||
4268 | } | ||
4269 | fn syntax(&self) -> &SyntaxNode { | ||
4270 | match self { | ||
4271 | ModuleItem::StructDef(it) => &it.syntax, | ||
4272 | ModuleItem::UnionDef(it) => &it.syntax, | ||
4273 | ModuleItem::EnumDef(it) => &it.syntax, | ||
4274 | ModuleItem::FnDef(it) => &it.syntax, | ||
4275 | ModuleItem::TraitDef(it) => &it.syntax, | ||
4276 | ModuleItem::TypeAliasDef(it) => &it.syntax, | ||
4277 | ModuleItem::ImplDef(it) => &it.syntax, | ||
4278 | ModuleItem::UseItem(it) => &it.syntax, | ||
4279 | ModuleItem::ExternCrateItem(it) => &it.syntax, | ||
4280 | ModuleItem::ConstDef(it) => &it.syntax, | ||
4281 | ModuleItem::StaticDef(it) => &it.syntax, | ||
4282 | ModuleItem::Module(it) => &it.syntax, | ||
4283 | ModuleItem::MacroCall(it) => &it.syntax, | ||
4284 | } | ||
4285 | } | ||
4286 | } | ||
4287 | impl ast::AttrsOwner for ModuleItem {} | ||
4288 | impl ast::VisibilityOwner for ModuleItem {} | ||
4289 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
4290 | pub enum ImplItem { | ||
4291 | FnDef(FnDef), | ||
4292 | TypeAliasDef(TypeAliasDef), | ||
4293 | ConstDef(ConstDef), | ||
4294 | } | ||
4295 | impl From<FnDef> for ImplItem { | ||
4296 | fn from(node: FnDef) -> ImplItem { | ||
4297 | ImplItem::FnDef(node) | ||
4298 | } | ||
4299 | } | ||
4300 | impl From<TypeAliasDef> for ImplItem { | ||
4301 | fn from(node: TypeAliasDef) -> ImplItem { | ||
4302 | ImplItem::TypeAliasDef(node) | ||
4303 | } | ||
4304 | } | ||
4305 | impl From<ConstDef> for ImplItem { | ||
4306 | fn from(node: ConstDef) -> ImplItem { | ||
4307 | ImplItem::ConstDef(node) | ||
4308 | } | ||
4309 | } | ||
4310 | impl std::fmt::Display for ImplItem { | ||
4311 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4312 | std::fmt::Display::fmt(self.syntax(), f) | ||
4313 | } | ||
4314 | } | ||
4315 | impl AstNode for ImplItem { | ||
4316 | fn can_cast(kind: SyntaxKind) -> bool { | ||
4317 | match kind { | ||
4318 | FN_DEF | TYPE_ALIAS_DEF | CONST_DEF => true, | ||
4319 | _ => false, | ||
4320 | } | ||
4321 | } | ||
4322 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
4323 | let res = match syntax.kind() { | ||
4324 | FN_DEF => ImplItem::FnDef(FnDef { syntax }), | ||
4325 | TYPE_ALIAS_DEF => ImplItem::TypeAliasDef(TypeAliasDef { syntax }), | ||
4326 | CONST_DEF => ImplItem::ConstDef(ConstDef { syntax }), | ||
4327 | _ => return None, | ||
4328 | }; | ||
4329 | Some(res) | ||
4330 | } | ||
4331 | fn syntax(&self) -> &SyntaxNode { | ||
4332 | match self { | ||
4333 | ImplItem::FnDef(it) => &it.syntax, | ||
4334 | ImplItem::TypeAliasDef(it) => &it.syntax, | ||
4335 | ImplItem::ConstDef(it) => &it.syntax, | ||
4336 | } | ||
4337 | } | ||
4338 | } | ||
4339 | impl ast::AttrsOwner for ImplItem {} | ||
4340 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
4341 | pub enum Expr { | ||
4342 | TupleExpr(TupleExpr), | ||
4343 | ArrayExpr(ArrayExpr), | ||
4344 | ParenExpr(ParenExpr), | ||
4345 | PathExpr(PathExpr), | ||
4346 | LambdaExpr(LambdaExpr), | ||
4347 | IfExpr(IfExpr), | ||
4348 | LoopExpr(LoopExpr), | ||
4349 | ForExpr(ForExpr), | ||
4350 | WhileExpr(WhileExpr), | ||
4351 | ContinueExpr(ContinueExpr), | ||
4352 | BreakExpr(BreakExpr), | ||
4353 | Label(Label), | ||
4354 | BlockExpr(BlockExpr), | ||
4355 | ReturnExpr(ReturnExpr), | ||
4356 | MatchExpr(MatchExpr), | ||
4357 | RecordLit(RecordLit), | ||
4358 | CallExpr(CallExpr), | ||
4359 | IndexExpr(IndexExpr), | ||
4360 | MethodCallExpr(MethodCallExpr), | ||
4361 | FieldExpr(FieldExpr), | ||
4362 | AwaitExpr(AwaitExpr), | ||
4363 | TryExpr(TryExpr), | ||
4364 | TryBlockExpr(TryBlockExpr), | ||
4365 | CastExpr(CastExpr), | ||
4366 | RefExpr(RefExpr), | ||
4367 | PrefixExpr(PrefixExpr), | ||
4368 | RangeExpr(RangeExpr), | ||
4369 | BinExpr(BinExpr), | ||
4370 | Literal(Literal), | ||
4371 | MacroCall(MacroCall), | ||
4372 | BoxExpr(BoxExpr), | ||
4373 | } | ||
4374 | impl From<TupleExpr> for Expr { | ||
4375 | fn from(node: TupleExpr) -> Expr { | ||
4376 | Expr::TupleExpr(node) | ||
4377 | } | ||
4378 | } | ||
4379 | impl From<ArrayExpr> for Expr { | ||
4380 | fn from(node: ArrayExpr) -> Expr { | ||
4381 | Expr::ArrayExpr(node) | ||
4382 | } | ||
4383 | } | ||
4384 | impl From<ParenExpr> for Expr { | ||
4385 | fn from(node: ParenExpr) -> Expr { | ||
4386 | Expr::ParenExpr(node) | ||
4387 | } | ||
4388 | } | ||
4389 | impl From<PathExpr> for Expr { | ||
4390 | fn from(node: PathExpr) -> Expr { | ||
4391 | Expr::PathExpr(node) | ||
4392 | } | ||
4393 | } | ||
4394 | impl From<LambdaExpr> for Expr { | ||
4395 | fn from(node: LambdaExpr) -> Expr { | ||
4396 | Expr::LambdaExpr(node) | ||
4397 | } | ||
4398 | } | ||
4399 | impl From<IfExpr> for Expr { | ||
4400 | fn from(node: IfExpr) -> Expr { | ||
4401 | Expr::IfExpr(node) | ||
4402 | } | ||
4403 | } | ||
4404 | impl From<LoopExpr> for Expr { | ||
4405 | fn from(node: LoopExpr) -> Expr { | ||
4406 | Expr::LoopExpr(node) | ||
4407 | } | ||
4408 | } | ||
4409 | impl From<ForExpr> for Expr { | ||
4410 | fn from(node: ForExpr) -> Expr { | ||
4411 | Expr::ForExpr(node) | ||
4412 | } | ||
4413 | } | ||
4414 | impl From<WhileExpr> for Expr { | ||
4415 | fn from(node: WhileExpr) -> Expr { | ||
4416 | Expr::WhileExpr(node) | ||
4417 | } | ||
4418 | } | ||
4419 | impl From<ContinueExpr> for Expr { | ||
4420 | fn from(node: ContinueExpr) -> Expr { | ||
4421 | Expr::ContinueExpr(node) | ||
4422 | } | ||
4423 | } | ||
4424 | impl From<BreakExpr> for Expr { | ||
4425 | fn from(node: BreakExpr) -> Expr { | ||
4426 | Expr::BreakExpr(node) | ||
4427 | } | ||
4428 | } | ||
4429 | impl From<Label> for Expr { | ||
4430 | fn from(node: Label) -> Expr { | ||
4431 | Expr::Label(node) | ||
4432 | } | ||
4433 | } | ||
4434 | impl From<BlockExpr> for Expr { | ||
4435 | fn from(node: BlockExpr) -> Expr { | ||
4436 | Expr::BlockExpr(node) | ||
4437 | } | ||
4438 | } | ||
4439 | impl From<ReturnExpr> for Expr { | ||
4440 | fn from(node: ReturnExpr) -> Expr { | ||
4441 | Expr::ReturnExpr(node) | ||
4442 | } | ||
4443 | } | ||
4444 | impl From<MatchExpr> for Expr { | ||
4445 | fn from(node: MatchExpr) -> Expr { | ||
4446 | Expr::MatchExpr(node) | ||
4447 | } | ||
4448 | } | ||
4449 | impl From<RecordLit> for Expr { | ||
4450 | fn from(node: RecordLit) -> Expr { | ||
4451 | Expr::RecordLit(node) | ||
4452 | } | ||
4453 | } | ||
4454 | impl From<CallExpr> for Expr { | ||
4455 | fn from(node: CallExpr) -> Expr { | ||
4456 | Expr::CallExpr(node) | ||
4457 | } | ||
4458 | } | ||
4459 | impl From<IndexExpr> for Expr { | ||
4460 | fn from(node: IndexExpr) -> Expr { | ||
4461 | Expr::IndexExpr(node) | ||
4462 | } | ||
4463 | } | ||
4464 | impl From<MethodCallExpr> for Expr { | ||
4465 | fn from(node: MethodCallExpr) -> Expr { | ||
4466 | Expr::MethodCallExpr(node) | ||
4467 | } | ||
4468 | } | ||
4469 | impl From<FieldExpr> for Expr { | ||
4470 | fn from(node: FieldExpr) -> Expr { | ||
4471 | Expr::FieldExpr(node) | ||
4472 | } | ||
4473 | } | ||
4474 | impl From<AwaitExpr> for Expr { | ||
4475 | fn from(node: AwaitExpr) -> Expr { | ||
4476 | Expr::AwaitExpr(node) | ||
4477 | } | ||
4478 | } | ||
4479 | impl From<TryExpr> for Expr { | ||
4480 | fn from(node: TryExpr) -> Expr { | ||
4481 | Expr::TryExpr(node) | ||
4482 | } | ||
4483 | } | ||
4484 | impl From<TryBlockExpr> for Expr { | ||
4485 | fn from(node: TryBlockExpr) -> Expr { | ||
4486 | Expr::TryBlockExpr(node) | ||
4487 | } | ||
4488 | } | ||
4489 | impl From<CastExpr> for Expr { | ||
4490 | fn from(node: CastExpr) -> Expr { | ||
4491 | Expr::CastExpr(node) | ||
4492 | } | ||
4493 | } | ||
4494 | impl From<RefExpr> for Expr { | ||
4495 | fn from(node: RefExpr) -> Expr { | ||
4496 | Expr::RefExpr(node) | ||
4497 | } | ||
4498 | } | ||
4499 | impl From<PrefixExpr> for Expr { | ||
4500 | fn from(node: PrefixExpr) -> Expr { | ||
4501 | Expr::PrefixExpr(node) | ||
4502 | } | ||
4503 | } | ||
4504 | impl From<RangeExpr> for Expr { | ||
4505 | fn from(node: RangeExpr) -> Expr { | ||
4506 | Expr::RangeExpr(node) | ||
4507 | } | ||
4508 | } | ||
4509 | impl From<BinExpr> for Expr { | ||
4510 | fn from(node: BinExpr) -> Expr { | ||
4511 | Expr::BinExpr(node) | ||
4512 | } | ||
4513 | } | ||
4514 | impl From<Literal> for Expr { | ||
4515 | fn from(node: Literal) -> Expr { | ||
4516 | Expr::Literal(node) | ||
4517 | } | ||
4518 | } | ||
4519 | impl From<MacroCall> for Expr { | ||
4520 | fn from(node: MacroCall) -> Expr { | ||
4521 | Expr::MacroCall(node) | ||
4522 | } | ||
4523 | } | ||
4524 | impl From<BoxExpr> for Expr { | ||
4525 | fn from(node: BoxExpr) -> Expr { | ||
4526 | Expr::BoxExpr(node) | ||
4527 | } | ||
4528 | } | ||
4529 | impl std::fmt::Display for Expr { | ||
4530 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4531 | std::fmt::Display::fmt(self.syntax(), f) | ||
4532 | } | ||
4533 | } | ||
4534 | impl AstNode for Expr { | ||
4535 | fn can_cast(kind: SyntaxKind) -> bool { | ||
4536 | match kind { | ||
4537 | TUPLE_EXPR | ARRAY_EXPR | PAREN_EXPR | PATH_EXPR | LAMBDA_EXPR | IF_EXPR | ||
4538 | | LOOP_EXPR | FOR_EXPR | WHILE_EXPR | CONTINUE_EXPR | BREAK_EXPR | LABEL | ||
4539 | | BLOCK_EXPR | RETURN_EXPR | MATCH_EXPR | RECORD_LIT | CALL_EXPR | INDEX_EXPR | ||
4540 | | METHOD_CALL_EXPR | FIELD_EXPR | AWAIT_EXPR | TRY_EXPR | TRY_BLOCK_EXPR | ||
4541 | | CAST_EXPR | REF_EXPR | PREFIX_EXPR | RANGE_EXPR | BIN_EXPR | LITERAL | MACRO_CALL | ||
4542 | | BOX_EXPR => true, | ||
4543 | _ => false, | ||
4544 | } | ||
4545 | } | ||
4546 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
4547 | let res = match syntax.kind() { | ||
4548 | TUPLE_EXPR => Expr::TupleExpr(TupleExpr { syntax }), | ||
4549 | ARRAY_EXPR => Expr::ArrayExpr(ArrayExpr { syntax }), | ||
4550 | PAREN_EXPR => Expr::ParenExpr(ParenExpr { syntax }), | ||
4551 | PATH_EXPR => Expr::PathExpr(PathExpr { syntax }), | ||
4552 | LAMBDA_EXPR => Expr::LambdaExpr(LambdaExpr { syntax }), | ||
4553 | IF_EXPR => Expr::IfExpr(IfExpr { syntax }), | ||
4554 | LOOP_EXPR => Expr::LoopExpr(LoopExpr { syntax }), | ||
4555 | FOR_EXPR => Expr::ForExpr(ForExpr { syntax }), | ||
4556 | WHILE_EXPR => Expr::WhileExpr(WhileExpr { syntax }), | ||
4557 | CONTINUE_EXPR => Expr::ContinueExpr(ContinueExpr { syntax }), | ||
4558 | BREAK_EXPR => Expr::BreakExpr(BreakExpr { syntax }), | ||
4559 | LABEL => Expr::Label(Label { syntax }), | ||
4560 | BLOCK_EXPR => Expr::BlockExpr(BlockExpr { syntax }), | ||
4561 | RETURN_EXPR => Expr::ReturnExpr(ReturnExpr { syntax }), | ||
4562 | MATCH_EXPR => Expr::MatchExpr(MatchExpr { syntax }), | ||
4563 | RECORD_LIT => Expr::RecordLit(RecordLit { syntax }), | ||
4564 | CALL_EXPR => Expr::CallExpr(CallExpr { syntax }), | ||
4565 | INDEX_EXPR => Expr::IndexExpr(IndexExpr { syntax }), | ||
4566 | METHOD_CALL_EXPR => Expr::MethodCallExpr(MethodCallExpr { syntax }), | ||
4567 | FIELD_EXPR => Expr::FieldExpr(FieldExpr { syntax }), | ||
4568 | AWAIT_EXPR => Expr::AwaitExpr(AwaitExpr { syntax }), | ||
4569 | TRY_EXPR => Expr::TryExpr(TryExpr { syntax }), | ||
4570 | TRY_BLOCK_EXPR => Expr::TryBlockExpr(TryBlockExpr { syntax }), | ||
4571 | CAST_EXPR => Expr::CastExpr(CastExpr { syntax }), | ||
4572 | REF_EXPR => Expr::RefExpr(RefExpr { syntax }), | ||
4573 | PREFIX_EXPR => Expr::PrefixExpr(PrefixExpr { syntax }), | ||
4574 | RANGE_EXPR => Expr::RangeExpr(RangeExpr { syntax }), | ||
4575 | BIN_EXPR => Expr::BinExpr(BinExpr { syntax }), | ||
4576 | LITERAL => Expr::Literal(Literal { syntax }), | ||
4577 | MACRO_CALL => Expr::MacroCall(MacroCall { syntax }), | ||
4578 | BOX_EXPR => Expr::BoxExpr(BoxExpr { syntax }), | ||
4579 | _ => return None, | ||
4580 | }; | ||
4581 | Some(res) | ||
4582 | } | ||
4583 | fn syntax(&self) -> &SyntaxNode { | ||
4584 | match self { | ||
4585 | Expr::TupleExpr(it) => &it.syntax, | ||
4586 | Expr::ArrayExpr(it) => &it.syntax, | ||
4587 | Expr::ParenExpr(it) => &it.syntax, | ||
4588 | Expr::PathExpr(it) => &it.syntax, | ||
4589 | Expr::LambdaExpr(it) => &it.syntax, | ||
4590 | Expr::IfExpr(it) => &it.syntax, | ||
4591 | Expr::LoopExpr(it) => &it.syntax, | ||
4592 | Expr::ForExpr(it) => &it.syntax, | ||
4593 | Expr::WhileExpr(it) => &it.syntax, | ||
4594 | Expr::ContinueExpr(it) => &it.syntax, | ||
4595 | Expr::BreakExpr(it) => &it.syntax, | ||
4596 | Expr::Label(it) => &it.syntax, | ||
4597 | Expr::BlockExpr(it) => &it.syntax, | ||
4598 | Expr::ReturnExpr(it) => &it.syntax, | ||
4599 | Expr::MatchExpr(it) => &it.syntax, | ||
4600 | Expr::RecordLit(it) => &it.syntax, | ||
4601 | Expr::CallExpr(it) => &it.syntax, | ||
4602 | Expr::IndexExpr(it) => &it.syntax, | ||
4603 | Expr::MethodCallExpr(it) => &it.syntax, | ||
4604 | Expr::FieldExpr(it) => &it.syntax, | ||
4605 | Expr::AwaitExpr(it) => &it.syntax, | ||
4606 | Expr::TryExpr(it) => &it.syntax, | ||
4607 | Expr::TryBlockExpr(it) => &it.syntax, | ||
4608 | Expr::CastExpr(it) => &it.syntax, | ||
4609 | Expr::RefExpr(it) => &it.syntax, | ||
4610 | Expr::PrefixExpr(it) => &it.syntax, | ||
4611 | Expr::RangeExpr(it) => &it.syntax, | ||
4612 | Expr::BinExpr(it) => &it.syntax, | ||
4613 | Expr::Literal(it) => &it.syntax, | ||
4614 | Expr::MacroCall(it) => &it.syntax, | ||
4615 | Expr::BoxExpr(it) => &it.syntax, | ||
4616 | } | ||
4617 | } | ||
4618 | } | ||
4619 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
4620 | pub enum Pat { | ||
4621 | OrPat(OrPat), | ||
4622 | ParenPat(ParenPat), | ||
4623 | RefPat(RefPat), | ||
4624 | BoxPat(BoxPat), | ||
4625 | BindPat(BindPat), | ||
4626 | PlaceholderPat(PlaceholderPat), | ||
4627 | DotDotPat(DotDotPat), | ||
4628 | PathPat(PathPat), | ||
4629 | RecordPat(RecordPat), | ||
4630 | TupleStructPat(TupleStructPat), | ||
4631 | TuplePat(TuplePat), | ||
4632 | SlicePat(SlicePat), | ||
4633 | RangePat(RangePat), | ||
4634 | LiteralPat(LiteralPat), | ||
4635 | MacroPat(MacroPat), | ||
4636 | } | ||
4637 | impl From<OrPat> for Pat { | ||
4638 | fn from(node: OrPat) -> Pat { | ||
4639 | Pat::OrPat(node) | ||
4640 | } | ||
4641 | } | ||
4642 | impl From<ParenPat> for Pat { | ||
4643 | fn from(node: ParenPat) -> Pat { | ||
4644 | Pat::ParenPat(node) | ||
4645 | } | ||
4646 | } | ||
4647 | impl From<RefPat> for Pat { | ||
4648 | fn from(node: RefPat) -> Pat { | ||
4649 | Pat::RefPat(node) | ||
4650 | } | ||
4651 | } | ||
4652 | impl From<BoxPat> for Pat { | ||
4653 | fn from(node: BoxPat) -> Pat { | ||
4654 | Pat::BoxPat(node) | ||
4655 | } | ||
4656 | } | ||
4657 | impl From<BindPat> for Pat { | ||
4658 | fn from(node: BindPat) -> Pat { | ||
4659 | Pat::BindPat(node) | ||
4660 | } | ||
4661 | } | ||
4662 | impl From<PlaceholderPat> for Pat { | ||
4663 | fn from(node: PlaceholderPat) -> Pat { | ||
4664 | Pat::PlaceholderPat(node) | ||
4665 | } | ||
4666 | } | ||
4667 | impl From<DotDotPat> for Pat { | ||
4668 | fn from(node: DotDotPat) -> Pat { | ||
4669 | Pat::DotDotPat(node) | ||
4670 | } | ||
4671 | } | ||
4672 | impl From<PathPat> for Pat { | ||
4673 | fn from(node: PathPat) -> Pat { | ||
4674 | Pat::PathPat(node) | ||
4675 | } | ||
4676 | } | ||
4677 | impl From<RecordPat> for Pat { | ||
4678 | fn from(node: RecordPat) -> Pat { | ||
4679 | Pat::RecordPat(node) | ||
4680 | } | ||
4681 | } | ||
4682 | impl From<TupleStructPat> for Pat { | ||
4683 | fn from(node: TupleStructPat) -> Pat { | ||
4684 | Pat::TupleStructPat(node) | ||
4685 | } | ||
4686 | } | ||
4687 | impl From<TuplePat> for Pat { | ||
4688 | fn from(node: TuplePat) -> Pat { | ||
4689 | Pat::TuplePat(node) | ||
4690 | } | ||
4691 | } | ||
4692 | impl From<SlicePat> for Pat { | ||
4693 | fn from(node: SlicePat) -> Pat { | ||
4694 | Pat::SlicePat(node) | ||
4695 | } | ||
4696 | } | ||
4697 | impl From<RangePat> for Pat { | ||
4698 | fn from(node: RangePat) -> Pat { | ||
4699 | Pat::RangePat(node) | ||
4700 | } | ||
4701 | } | ||
4702 | impl From<LiteralPat> for Pat { | ||
4703 | fn from(node: LiteralPat) -> Pat { | ||
4704 | Pat::LiteralPat(node) | ||
4705 | } | ||
4706 | } | ||
4707 | impl From<MacroPat> for Pat { | ||
4708 | fn from(node: MacroPat) -> Pat { | ||
4709 | Pat::MacroPat(node) | ||
4710 | } | ||
4711 | } | ||
4712 | impl std::fmt::Display for Pat { | ||
4713 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4714 | std::fmt::Display::fmt(self.syntax(), f) | ||
4715 | } | ||
4716 | } | ||
4717 | impl AstNode for Pat { | ||
4718 | fn can_cast(kind: SyntaxKind) -> bool { | ||
4719 | match kind { | ||
4720 | OR_PAT | PAREN_PAT | REF_PAT | BOX_PAT | BIND_PAT | PLACEHOLDER_PAT | DOT_DOT_PAT | ||
4721 | | PATH_PAT | RECORD_PAT | TUPLE_STRUCT_PAT | TUPLE_PAT | SLICE_PAT | RANGE_PAT | ||
4722 | | LITERAL_PAT | MACRO_PAT => true, | ||
4723 | _ => false, | ||
4724 | } | ||
4725 | } | ||
4726 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
4727 | let res = match syntax.kind() { | ||
4728 | OR_PAT => Pat::OrPat(OrPat { syntax }), | ||
4729 | PAREN_PAT => Pat::ParenPat(ParenPat { syntax }), | ||
4730 | REF_PAT => Pat::RefPat(RefPat { syntax }), | ||
4731 | BOX_PAT => Pat::BoxPat(BoxPat { syntax }), | ||
4732 | BIND_PAT => Pat::BindPat(BindPat { syntax }), | ||
4733 | PLACEHOLDER_PAT => Pat::PlaceholderPat(PlaceholderPat { syntax }), | ||
4734 | DOT_DOT_PAT => Pat::DotDotPat(DotDotPat { syntax }), | ||
4735 | PATH_PAT => Pat::PathPat(PathPat { syntax }), | ||
4736 | RECORD_PAT => Pat::RecordPat(RecordPat { syntax }), | ||
4737 | TUPLE_STRUCT_PAT => Pat::TupleStructPat(TupleStructPat { syntax }), | ||
4738 | TUPLE_PAT => Pat::TuplePat(TuplePat { syntax }), | ||
4739 | SLICE_PAT => Pat::SlicePat(SlicePat { syntax }), | ||
4740 | RANGE_PAT => Pat::RangePat(RangePat { syntax }), | ||
4741 | LITERAL_PAT => Pat::LiteralPat(LiteralPat { syntax }), | ||
4742 | MACRO_PAT => Pat::MacroPat(MacroPat { syntax }), | ||
4743 | _ => return None, | ||
4744 | }; | ||
4745 | Some(res) | ||
4746 | } | ||
4747 | fn syntax(&self) -> &SyntaxNode { | ||
4748 | match self { | ||
4749 | Pat::OrPat(it) => &it.syntax, | ||
4750 | Pat::ParenPat(it) => &it.syntax, | ||
4751 | Pat::RefPat(it) => &it.syntax, | ||
4752 | Pat::BoxPat(it) => &it.syntax, | ||
4753 | Pat::BindPat(it) => &it.syntax, | ||
4754 | Pat::PlaceholderPat(it) => &it.syntax, | ||
4755 | Pat::DotDotPat(it) => &it.syntax, | ||
4756 | Pat::PathPat(it) => &it.syntax, | ||
4757 | Pat::RecordPat(it) => &it.syntax, | ||
4758 | Pat::TupleStructPat(it) => &it.syntax, | ||
4759 | Pat::TuplePat(it) => &it.syntax, | ||
4760 | Pat::SlicePat(it) => &it.syntax, | ||
4761 | Pat::RangePat(it) => &it.syntax, | ||
4762 | Pat::LiteralPat(it) => &it.syntax, | ||
4763 | Pat::MacroPat(it) => &it.syntax, | ||
4764 | } | ||
4765 | } | ||
4766 | } | ||
4767 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
4768 | pub enum AttrInput { | ||
4769 | Literal(Literal), | ||
4770 | TokenTree(TokenTree), | ||
4771 | } | ||
4772 | impl From<Literal> for AttrInput { | ||
4773 | fn from(node: Literal) -> AttrInput { | ||
4774 | AttrInput::Literal(node) | ||
4775 | } | ||
4776 | } | ||
4777 | impl From<TokenTree> for AttrInput { | ||
4778 | fn from(node: TokenTree) -> AttrInput { | ||
4779 | AttrInput::TokenTree(node) | ||
4780 | } | ||
4781 | } | ||
4782 | impl std::fmt::Display for AttrInput { | ||
4783 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4784 | std::fmt::Display::fmt(self.syntax(), f) | ||
4785 | } | ||
4786 | } | ||
4787 | impl AstNode for AttrInput { | ||
4788 | fn can_cast(kind: SyntaxKind) -> bool { | ||
4789 | match kind { | ||
4790 | LITERAL | TOKEN_TREE => true, | ||
4791 | _ => false, | ||
4792 | } | ||
4793 | } | ||
4794 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
4795 | let res = match syntax.kind() { | ||
4796 | LITERAL => AttrInput::Literal(Literal { syntax }), | ||
4797 | TOKEN_TREE => AttrInput::TokenTree(TokenTree { syntax }), | ||
4798 | _ => return None, | ||
4799 | }; | ||
4800 | Some(res) | ||
4801 | } | ||
4802 | fn syntax(&self) -> &SyntaxNode { | ||
4803 | match self { | ||
4804 | AttrInput::Literal(it) => &it.syntax, | ||
4805 | AttrInput::TokenTree(it) => &it.syntax, | ||
4806 | } | ||
4807 | } | ||
4808 | } | ||
4809 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
4810 | pub enum Stmt { | ||
4811 | ExprStmt(ExprStmt), | ||
4812 | LetStmt(LetStmt), | ||
4813 | } | ||
4814 | impl From<ExprStmt> for Stmt { | ||
4815 | fn from(node: ExprStmt) -> Stmt { | ||
4816 | Stmt::ExprStmt(node) | ||
4817 | } | ||
4818 | } | ||
4819 | impl From<LetStmt> for Stmt { | ||
4820 | fn from(node: LetStmt) -> Stmt { | ||
4821 | Stmt::LetStmt(node) | ||
4822 | } | ||
4823 | } | ||
4824 | impl std::fmt::Display for Stmt { | ||
4825 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4826 | std::fmt::Display::fmt(self.syntax(), f) | ||
4827 | } | ||
4828 | } | ||
4829 | impl AstNode for Stmt { | ||
4830 | fn can_cast(kind: SyntaxKind) -> bool { | ||
4831 | match kind { | ||
4832 | EXPR_STMT | LET_STMT => true, | ||
4833 | _ => false, | ||
4834 | } | ||
4835 | } | ||
4836 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
4837 | let res = match syntax.kind() { | ||
4838 | EXPR_STMT => Stmt::ExprStmt(ExprStmt { syntax }), | ||
4839 | LET_STMT => Stmt::LetStmt(LetStmt { syntax }), | ||
4840 | _ => return None, | ||
4841 | }; | ||
4842 | Some(res) | ||
4843 | } | ||
4844 | fn syntax(&self) -> &SyntaxNode { | ||
4845 | match self { | ||
4846 | Stmt::ExprStmt(it) => &it.syntax, | ||
4847 | Stmt::LetStmt(it) => &it.syntax, | ||
4848 | } | ||
4849 | } | ||
4850 | } | ||
diff --git a/crates/ra_syntax/src/ast/generated/nodes.rs b/crates/ra_syntax/src/ast/generated/nodes.rs new file mode 100644 index 000000000..bcbfd1129 --- /dev/null +++ b/crates/ra_syntax/src/ast/generated/nodes.rs | |||
@@ -0,0 +1,4180 @@ | |||
1 | //! Generated file, do not edit by hand, see `xtask/src/codegen` | ||
2 | |||
3 | use super::tokens::*; | ||
4 | use crate::{ | ||
5 | ast::{self, support, AstChildren, AstNode}, | ||
6 | SyntaxKind::{self, *}, | ||
7 | SyntaxNode, | ||
8 | }; | ||
9 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
10 | pub struct SourceFile { | ||
11 | pub(crate) syntax: SyntaxNode, | ||
12 | } | ||
13 | impl AstNode for SourceFile { | ||
14 | fn can_cast(kind: SyntaxKind) -> bool { kind == SOURCE_FILE } | ||
15 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
16 | if Self::can_cast(syntax.kind()) { | ||
17 | Some(Self { syntax }) | ||
18 | } else { | ||
19 | None | ||
20 | } | ||
21 | } | ||
22 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
23 | } | ||
24 | impl ast::ModuleItemOwner for SourceFile {} | ||
25 | impl ast::FnDefOwner for SourceFile {} | ||
26 | impl ast::AttrsOwner for SourceFile {} | ||
27 | impl SourceFile { | ||
28 | pub fn modules(&self) -> AstChildren<Module> { support::children(&self.syntax) } | ||
29 | } | ||
30 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
31 | pub struct FnDef { | ||
32 | pub(crate) syntax: SyntaxNode, | ||
33 | } | ||
34 | impl AstNode for FnDef { | ||
35 | fn can_cast(kind: SyntaxKind) -> bool { kind == FN_DEF } | ||
36 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
37 | if Self::can_cast(syntax.kind()) { | ||
38 | Some(Self { syntax }) | ||
39 | } else { | ||
40 | None | ||
41 | } | ||
42 | } | ||
43 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
44 | } | ||
45 | impl ast::VisibilityOwner for FnDef {} | ||
46 | impl ast::NameOwner for FnDef {} | ||
47 | impl ast::TypeParamsOwner for FnDef {} | ||
48 | impl ast::DocCommentsOwner for FnDef {} | ||
49 | impl ast::AttrsOwner for FnDef {} | ||
50 | impl FnDef { | ||
51 | pub fn abi(&self) -> Option<Abi> { support::child(&self.syntax) } | ||
52 | pub fn const_kw_token(&self) -> Option<ConstKw> { support::token(&self.syntax) } | ||
53 | pub fn default_kw_token(&self) -> Option<DefaultKw> { support::token(&self.syntax) } | ||
54 | pub fn async_kw_token(&self) -> Option<AsyncKw> { support::token(&self.syntax) } | ||
55 | pub fn unsafe_kw_token(&self) -> Option<UnsafeKw> { 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) } | ||
58 | pub fn ret_type(&self) -> Option<RetType> { support::child(&self.syntax) } | ||
59 | pub fn body(&self) -> Option<BlockExpr> { support::child(&self.syntax) } | ||
60 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } | ||
61 | } | ||
62 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
63 | pub struct RetType { | ||
64 | pub(crate) syntax: SyntaxNode, | ||
65 | } | ||
66 | impl AstNode for RetType { | ||
67 | fn can_cast(kind: SyntaxKind) -> bool { kind == RET_TYPE } | ||
68 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
69 | if Self::can_cast(syntax.kind()) { | ||
70 | Some(Self { syntax }) | ||
71 | } else { | ||
72 | None | ||
73 | } | ||
74 | } | ||
75 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
76 | } | ||
77 | impl RetType { | ||
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) } | ||
80 | } | ||
81 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
82 | pub struct StructDef { | ||
83 | pub(crate) syntax: SyntaxNode, | ||
84 | } | ||
85 | impl AstNode for StructDef { | ||
86 | fn can_cast(kind: SyntaxKind) -> bool { kind == STRUCT_DEF } | ||
87 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
88 | if Self::can_cast(syntax.kind()) { | ||
89 | Some(Self { syntax }) | ||
90 | } else { | ||
91 | None | ||
92 | } | ||
93 | } | ||
94 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
95 | } | ||
96 | impl ast::VisibilityOwner for StructDef {} | ||
97 | impl ast::NameOwner for StructDef {} | ||
98 | impl ast::TypeParamsOwner for StructDef {} | ||
99 | impl ast::AttrsOwner for StructDef {} | ||
100 | impl ast::DocCommentsOwner for StructDef {} | ||
101 | impl StructDef { | ||
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) } | ||
104 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } | ||
105 | } | ||
106 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
107 | pub struct UnionDef { | ||
108 | pub(crate) syntax: SyntaxNode, | ||
109 | } | ||
110 | impl AstNode for UnionDef { | ||
111 | fn can_cast(kind: SyntaxKind) -> bool { kind == UNION_DEF } | ||
112 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
113 | if Self::can_cast(syntax.kind()) { | ||
114 | Some(Self { syntax }) | ||
115 | } else { | ||
116 | None | ||
117 | } | ||
118 | } | ||
119 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
120 | } | ||
121 | impl ast::VisibilityOwner for UnionDef {} | ||
122 | impl ast::NameOwner for UnionDef {} | ||
123 | impl ast::TypeParamsOwner for UnionDef {} | ||
124 | impl ast::AttrsOwner for UnionDef {} | ||
125 | impl ast::DocCommentsOwner for UnionDef {} | ||
126 | impl UnionDef { | ||
127 | pub fn union_kw_token(&self) -> Option<UnionKw> { support::token(&self.syntax) } | ||
128 | pub fn record_field_def_list(&self) -> Option<RecordFieldDefList> { | ||
129 | support::child(&self.syntax) | ||
130 | } | ||
131 | } | ||
132 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
133 | pub struct RecordFieldDefList { | ||
134 | pub(crate) syntax: SyntaxNode, | ||
135 | } | ||
136 | impl AstNode for RecordFieldDefList { | ||
137 | fn can_cast(kind: SyntaxKind) -> bool { kind == RECORD_FIELD_DEF_LIST } | ||
138 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
139 | if Self::can_cast(syntax.kind()) { | ||
140 | Some(Self { syntax }) | ||
141 | } else { | ||
142 | None | ||
143 | } | ||
144 | } | ||
145 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
146 | } | ||
147 | impl RecordFieldDefList { | ||
148 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } | ||
149 | pub fn fields(&self) -> AstChildren<RecordFieldDef> { support::children(&self.syntax) } | ||
150 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } | ||
151 | } | ||
152 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
153 | pub struct RecordFieldDef { | ||
154 | pub(crate) syntax: SyntaxNode, | ||
155 | } | ||
156 | impl AstNode for RecordFieldDef { | ||
157 | fn can_cast(kind: SyntaxKind) -> bool { kind == RECORD_FIELD_DEF } | ||
158 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
159 | if Self::can_cast(syntax.kind()) { | ||
160 | Some(Self { syntax }) | ||
161 | } else { | ||
162 | None | ||
163 | } | ||
164 | } | ||
165 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
166 | } | ||
167 | impl ast::VisibilityOwner for RecordFieldDef {} | ||
168 | impl ast::NameOwner for RecordFieldDef {} | ||
169 | impl ast::AttrsOwner for RecordFieldDef {} | ||
170 | impl ast::DocCommentsOwner for RecordFieldDef {} | ||
171 | impl ast::TypeAscriptionOwner for RecordFieldDef {} | ||
172 | impl RecordFieldDef {} | ||
173 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
174 | pub struct TupleFieldDefList { | ||
175 | pub(crate) syntax: SyntaxNode, | ||
176 | } | ||
177 | impl AstNode for TupleFieldDefList { | ||
178 | fn can_cast(kind: SyntaxKind) -> bool { kind == TUPLE_FIELD_DEF_LIST } | ||
179 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
180 | if Self::can_cast(syntax.kind()) { | ||
181 | Some(Self { syntax }) | ||
182 | } else { | ||
183 | None | ||
184 | } | ||
185 | } | ||
186 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
187 | } | ||
188 | impl TupleFieldDefList { | ||
189 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } | ||
190 | pub fn fields(&self) -> AstChildren<TupleFieldDef> { support::children(&self.syntax) } | ||
191 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } | ||
192 | } | ||
193 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
194 | pub struct TupleFieldDef { | ||
195 | pub(crate) syntax: SyntaxNode, | ||
196 | } | ||
197 | impl AstNode for TupleFieldDef { | ||
198 | fn can_cast(kind: SyntaxKind) -> bool { kind == TUPLE_FIELD_DEF } | ||
199 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
200 | if Self::can_cast(syntax.kind()) { | ||
201 | Some(Self { syntax }) | ||
202 | } else { | ||
203 | None | ||
204 | } | ||
205 | } | ||
206 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
207 | } | ||
208 | impl ast::VisibilityOwner for TupleFieldDef {} | ||
209 | impl ast::AttrsOwner for TupleFieldDef {} | ||
210 | impl TupleFieldDef { | ||
211 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | ||
212 | } | ||
213 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
214 | pub struct EnumDef { | ||
215 | pub(crate) syntax: SyntaxNode, | ||
216 | } | ||
217 | impl AstNode for EnumDef { | ||
218 | fn can_cast(kind: SyntaxKind) -> bool { kind == ENUM_DEF } | ||
219 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
220 | if Self::can_cast(syntax.kind()) { | ||
221 | Some(Self { syntax }) | ||
222 | } else { | ||
223 | None | ||
224 | } | ||
225 | } | ||
226 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
227 | } | ||
228 | impl ast::VisibilityOwner for EnumDef {} | ||
229 | impl ast::NameOwner for EnumDef {} | ||
230 | impl ast::TypeParamsOwner for EnumDef {} | ||
231 | impl ast::AttrsOwner for EnumDef {} | ||
232 | impl ast::DocCommentsOwner for EnumDef {} | ||
233 | impl EnumDef { | ||
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) } | ||
236 | } | ||
237 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
238 | pub struct EnumVariantList { | ||
239 | pub(crate) syntax: SyntaxNode, | ||
240 | } | ||
241 | impl AstNode for EnumVariantList { | ||
242 | fn can_cast(kind: SyntaxKind) -> bool { kind == ENUM_VARIANT_LIST } | ||
243 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
244 | if Self::can_cast(syntax.kind()) { | ||
245 | Some(Self { syntax }) | ||
246 | } else { | ||
247 | None | ||
248 | } | ||
249 | } | ||
250 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
251 | } | ||
252 | impl EnumVariantList { | ||
253 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } | ||
254 | pub fn variants(&self) -> AstChildren<EnumVariant> { support::children(&self.syntax) } | ||
255 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } | ||
256 | } | ||
257 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
258 | pub struct EnumVariant { | ||
259 | pub(crate) syntax: SyntaxNode, | ||
260 | } | ||
261 | impl AstNode for EnumVariant { | ||
262 | fn can_cast(kind: SyntaxKind) -> bool { kind == ENUM_VARIANT } | ||
263 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
264 | if Self::can_cast(syntax.kind()) { | ||
265 | Some(Self { syntax }) | ||
266 | } else { | ||
267 | None | ||
268 | } | ||
269 | } | ||
270 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
271 | } | ||
272 | impl ast::VisibilityOwner for EnumVariant {} | ||
273 | impl ast::NameOwner for EnumVariant {} | ||
274 | impl ast::DocCommentsOwner for EnumVariant {} | ||
275 | impl ast::AttrsOwner for EnumVariant {} | ||
276 | impl EnumVariant { | ||
277 | pub fn field_def_list(&self) -> Option<FieldDefList> { support::child(&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) } | ||
280 | } | ||
281 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
282 | pub struct TraitDef { | ||
283 | pub(crate) syntax: SyntaxNode, | ||
284 | } | ||
285 | impl AstNode for TraitDef { | ||
286 | fn can_cast(kind: SyntaxKind) -> bool { kind == TRAIT_DEF } | ||
287 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
288 | if Self::can_cast(syntax.kind()) { | ||
289 | Some(Self { syntax }) | ||
290 | } else { | ||
291 | None | ||
292 | } | ||
293 | } | ||
294 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
295 | } | ||
296 | impl ast::VisibilityOwner for TraitDef {} | ||
297 | impl ast::NameOwner for TraitDef {} | ||
298 | impl ast::AttrsOwner for TraitDef {} | ||
299 | impl ast::DocCommentsOwner for TraitDef {} | ||
300 | impl ast::TypeParamsOwner for TraitDef {} | ||
301 | impl ast::TypeBoundsOwner for TraitDef {} | ||
302 | impl TraitDef { | ||
303 | pub fn unsafe_kw_token(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } | ||
304 | pub fn auto_kw_token(&self) -> Option<AutoKw> { 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) } | ||
307 | } | ||
308 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
309 | pub struct Module { | ||
310 | pub(crate) syntax: SyntaxNode, | ||
311 | } | ||
312 | impl AstNode for Module { | ||
313 | fn can_cast(kind: SyntaxKind) -> bool { kind == MODULE } | ||
314 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
315 | if Self::can_cast(syntax.kind()) { | ||
316 | Some(Self { syntax }) | ||
317 | } else { | ||
318 | None | ||
319 | } | ||
320 | } | ||
321 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
322 | } | ||
323 | impl ast::VisibilityOwner for Module {} | ||
324 | impl ast::NameOwner for Module {} | ||
325 | impl ast::AttrsOwner for Module {} | ||
326 | impl ast::DocCommentsOwner for Module {} | ||
327 | impl Module { | ||
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) } | ||
330 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } | ||
331 | } | ||
332 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
333 | pub struct ItemList { | ||
334 | pub(crate) syntax: SyntaxNode, | ||
335 | } | ||
336 | impl AstNode for ItemList { | ||
337 | fn can_cast(kind: SyntaxKind) -> bool { kind == ITEM_LIST } | ||
338 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
339 | if Self::can_cast(syntax.kind()) { | ||
340 | Some(Self { syntax }) | ||
341 | } else { | ||
342 | None | ||
343 | } | ||
344 | } | ||
345 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
346 | } | ||
347 | impl ast::FnDefOwner for ItemList {} | ||
348 | impl ast::ModuleItemOwner for ItemList {} | ||
349 | impl ItemList { | ||
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) } | ||
352 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } | ||
353 | } | ||
354 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
355 | pub struct ConstDef { | ||
356 | pub(crate) syntax: SyntaxNode, | ||
357 | } | ||
358 | impl AstNode for ConstDef { | ||
359 | fn can_cast(kind: SyntaxKind) -> bool { kind == CONST_DEF } | ||
360 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
361 | if Self::can_cast(syntax.kind()) { | ||
362 | Some(Self { syntax }) | ||
363 | } else { | ||
364 | None | ||
365 | } | ||
366 | } | ||
367 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
368 | } | ||
369 | impl ast::VisibilityOwner for ConstDef {} | ||
370 | impl ast::NameOwner for ConstDef {} | ||
371 | impl ast::TypeParamsOwner for ConstDef {} | ||
372 | impl ast::AttrsOwner for ConstDef {} | ||
373 | impl ast::DocCommentsOwner for ConstDef {} | ||
374 | impl ast::TypeAscriptionOwner for ConstDef {} | ||
375 | impl ConstDef { | ||
376 | pub fn default_kw_token(&self) -> Option<DefaultKw> { support::token(&self.syntax) } | ||
377 | pub fn const_kw_token(&self) -> Option<ConstKw> { 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) } | ||
380 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } | ||
381 | } | ||
382 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
383 | pub struct StaticDef { | ||
384 | pub(crate) syntax: SyntaxNode, | ||
385 | } | ||
386 | impl AstNode for StaticDef { | ||
387 | fn can_cast(kind: SyntaxKind) -> bool { kind == STATIC_DEF } | ||
388 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
389 | if Self::can_cast(syntax.kind()) { | ||
390 | Some(Self { syntax }) | ||
391 | } else { | ||
392 | None | ||
393 | } | ||
394 | } | ||
395 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
396 | } | ||
397 | impl ast::VisibilityOwner for StaticDef {} | ||
398 | impl ast::NameOwner for StaticDef {} | ||
399 | impl ast::TypeParamsOwner for StaticDef {} | ||
400 | impl ast::AttrsOwner for StaticDef {} | ||
401 | impl ast::DocCommentsOwner for StaticDef {} | ||
402 | impl ast::TypeAscriptionOwner for StaticDef {} | ||
403 | impl StaticDef { | ||
404 | pub fn static_kw_token(&self) -> Option<StaticKw> { support::token(&self.syntax) } | ||
405 | pub fn mut_kw_token(&self) -> Option<MutKw> { 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) } | ||
408 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } | ||
409 | } | ||
410 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
411 | pub struct TypeAliasDef { | ||
412 | pub(crate) syntax: SyntaxNode, | ||
413 | } | ||
414 | impl AstNode for TypeAliasDef { | ||
415 | fn can_cast(kind: SyntaxKind) -> bool { kind == TYPE_ALIAS_DEF } | ||
416 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
417 | if Self::can_cast(syntax.kind()) { | ||
418 | Some(Self { syntax }) | ||
419 | } else { | ||
420 | None | ||
421 | } | ||
422 | } | ||
423 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
424 | } | ||
425 | impl ast::VisibilityOwner for TypeAliasDef {} | ||
426 | impl ast::NameOwner for TypeAliasDef {} | ||
427 | impl ast::TypeParamsOwner for TypeAliasDef {} | ||
428 | impl ast::AttrsOwner for TypeAliasDef {} | ||
429 | impl ast::DocCommentsOwner for TypeAliasDef {} | ||
430 | impl ast::TypeBoundsOwner for TypeAliasDef {} | ||
431 | impl TypeAliasDef { | ||
432 | pub fn default_kw_token(&self) -> Option<DefaultKw> { support::token(&self.syntax) } | ||
433 | pub fn type_kw_token(&self) -> Option<TypeKw> { 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) } | ||
436 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } | ||
437 | } | ||
438 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
439 | pub struct ImplDef { | ||
440 | pub(crate) syntax: SyntaxNode, | ||
441 | } | ||
442 | impl AstNode for ImplDef { | ||
443 | fn can_cast(kind: SyntaxKind) -> bool { kind == IMPL_DEF } | ||
444 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
445 | if Self::can_cast(syntax.kind()) { | ||
446 | Some(Self { syntax }) | ||
447 | } else { | ||
448 | None | ||
449 | } | ||
450 | } | ||
451 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
452 | } | ||
453 | impl ast::TypeParamsOwner for ImplDef {} | ||
454 | impl ast::AttrsOwner for ImplDef {} | ||
455 | impl ImplDef { | ||
456 | pub fn default_kw_token(&self) -> Option<DefaultKw> { support::token(&self.syntax) } | ||
457 | pub fn const_kw_token(&self) -> Option<ConstKw> { support::token(&self.syntax) } | ||
458 | pub fn unsafe_kw_token(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } | ||
459 | pub fn impl_kw_token(&self) -> Option<ImplKw> { support::token(&self.syntax) } | ||
460 | pub fn excl_token(&self) -> Option<Excl> { 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) } | ||
463 | } | ||
464 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
465 | pub struct ParenType { | ||
466 | pub(crate) syntax: SyntaxNode, | ||
467 | } | ||
468 | impl AstNode for ParenType { | ||
469 | fn can_cast(kind: SyntaxKind) -> bool { kind == PAREN_TYPE } | ||
470 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
471 | if Self::can_cast(syntax.kind()) { | ||
472 | Some(Self { syntax }) | ||
473 | } else { | ||
474 | None | ||
475 | } | ||
476 | } | ||
477 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
478 | } | ||
479 | impl ParenType { | ||
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) } | ||
482 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } | ||
483 | } | ||
484 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
485 | pub struct TupleType { | ||
486 | pub(crate) syntax: SyntaxNode, | ||
487 | } | ||
488 | impl AstNode for TupleType { | ||
489 | fn can_cast(kind: SyntaxKind) -> bool { kind == TUPLE_TYPE } | ||
490 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
491 | if Self::can_cast(syntax.kind()) { | ||
492 | Some(Self { syntax }) | ||
493 | } else { | ||
494 | None | ||
495 | } | ||
496 | } | ||
497 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
498 | } | ||
499 | impl TupleType { | ||
500 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } | ||
501 | pub fn fields(&self) -> AstChildren<TypeRef> { support::children(&self.syntax) } | ||
502 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } | ||
503 | } | ||
504 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
505 | pub struct NeverType { | ||
506 | pub(crate) syntax: SyntaxNode, | ||
507 | } | ||
508 | impl AstNode for NeverType { | ||
509 | fn can_cast(kind: SyntaxKind) -> bool { kind == NEVER_TYPE } | ||
510 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
511 | if Self::can_cast(syntax.kind()) { | ||
512 | Some(Self { syntax }) | ||
513 | } else { | ||
514 | None | ||
515 | } | ||
516 | } | ||
517 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
518 | } | ||
519 | impl NeverType { | ||
520 | pub fn excl_token(&self) -> Option<Excl> { support::token(&self.syntax) } | ||
521 | } | ||
522 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
523 | pub struct PathType { | ||
524 | pub(crate) syntax: SyntaxNode, | ||
525 | } | ||
526 | impl AstNode for PathType { | ||
527 | fn can_cast(kind: SyntaxKind) -> bool { kind == PATH_TYPE } | ||
528 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
529 | if Self::can_cast(syntax.kind()) { | ||
530 | Some(Self { syntax }) | ||
531 | } else { | ||
532 | None | ||
533 | } | ||
534 | } | ||
535 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
536 | } | ||
537 | impl PathType { | ||
538 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | ||
539 | } | ||
540 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
541 | pub struct PointerType { | ||
542 | pub(crate) syntax: SyntaxNode, | ||
543 | } | ||
544 | impl AstNode for PointerType { | ||
545 | fn can_cast(kind: SyntaxKind) -> bool { kind == POINTER_TYPE } | ||
546 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
547 | if Self::can_cast(syntax.kind()) { | ||
548 | Some(Self { syntax }) | ||
549 | } else { | ||
550 | None | ||
551 | } | ||
552 | } | ||
553 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
554 | } | ||
555 | impl PointerType { | ||
556 | pub fn star_token(&self) -> Option<Star> { support::token(&self.syntax) } | ||
557 | pub fn const_kw_token(&self) -> Option<ConstKw> { support::token(&self.syntax) } | ||
558 | pub fn mut_kw_token(&self) -> Option<MutKw> { support::token(&self.syntax) } | ||
559 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | ||
560 | } | ||
561 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
562 | pub struct ArrayType { | ||
563 | pub(crate) syntax: SyntaxNode, | ||
564 | } | ||
565 | impl AstNode for ArrayType { | ||
566 | fn can_cast(kind: SyntaxKind) -> bool { kind == ARRAY_TYPE } | ||
567 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
568 | if Self::can_cast(syntax.kind()) { | ||
569 | Some(Self { syntax }) | ||
570 | } else { | ||
571 | None | ||
572 | } | ||
573 | } | ||
574 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
575 | } | ||
576 | impl ArrayType { | ||
577 | pub fn l_brack_token(&self) -> Option<LBrack> { support::token(&self.syntax) } | ||
578 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | ||
579 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } | ||
580 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
581 | pub fn r_brack_token(&self) -> Option<RBrack> { support::token(&self.syntax) } | ||
582 | } | ||
583 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
584 | pub struct SliceType { | ||
585 | pub(crate) syntax: SyntaxNode, | ||
586 | } | ||
587 | impl AstNode for SliceType { | ||
588 | fn can_cast(kind: SyntaxKind) -> bool { kind == SLICE_TYPE } | ||
589 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
590 | if Self::can_cast(syntax.kind()) { | ||
591 | Some(Self { syntax }) | ||
592 | } else { | ||
593 | None | ||
594 | } | ||
595 | } | ||
596 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
597 | } | ||
598 | impl SliceType { | ||
599 | pub fn l_brack_token(&self) -> Option<LBrack> { support::token(&self.syntax) } | ||
600 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | ||
601 | pub fn r_brack_token(&self) -> Option<RBrack> { support::token(&self.syntax) } | ||
602 | } | ||
603 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
604 | pub struct ReferenceType { | ||
605 | pub(crate) syntax: SyntaxNode, | ||
606 | } | ||
607 | impl AstNode for ReferenceType { | ||
608 | fn can_cast(kind: SyntaxKind) -> bool { kind == REFERENCE_TYPE } | ||
609 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
610 | if Self::can_cast(syntax.kind()) { | ||
611 | Some(Self { syntax }) | ||
612 | } else { | ||
613 | None | ||
614 | } | ||
615 | } | ||
616 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
617 | } | ||
618 | impl ReferenceType { | ||
619 | pub fn amp_token(&self) -> Option<Amp> { support::token(&self.syntax) } | ||
620 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } | ||
621 | pub fn mut_kw_token(&self) -> Option<MutKw> { support::token(&self.syntax) } | ||
622 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | ||
623 | } | ||
624 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
625 | pub struct PlaceholderType { | ||
626 | pub(crate) syntax: SyntaxNode, | ||
627 | } | ||
628 | impl AstNode for PlaceholderType { | ||
629 | fn can_cast(kind: SyntaxKind) -> bool { kind == PLACEHOLDER_TYPE } | ||
630 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
631 | if Self::can_cast(syntax.kind()) { | ||
632 | Some(Self { syntax }) | ||
633 | } else { | ||
634 | None | ||
635 | } | ||
636 | } | ||
637 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
638 | } | ||
639 | impl PlaceholderType { | ||
640 | pub fn underscore_token(&self) -> Option<Underscore> { support::token(&self.syntax) } | ||
641 | } | ||
642 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
643 | pub struct FnPointerType { | ||
644 | pub(crate) syntax: SyntaxNode, | ||
645 | } | ||
646 | impl AstNode for FnPointerType { | ||
647 | fn can_cast(kind: SyntaxKind) -> bool { kind == FN_POINTER_TYPE } | ||
648 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
649 | if Self::can_cast(syntax.kind()) { | ||
650 | Some(Self { syntax }) | ||
651 | } else { | ||
652 | None | ||
653 | } | ||
654 | } | ||
655 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
656 | } | ||
657 | impl FnPointerType { | ||
658 | pub fn abi(&self) -> Option<Abi> { support::child(&self.syntax) } | ||
659 | pub fn unsafe_kw_token(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } | ||
660 | pub fn fn_kw_token(&self) -> Option<FnKw> { support::token(&self.syntax) } | ||
661 | pub fn param_list(&self) -> Option<ParamList> { support::child(&self.syntax) } | ||
662 | pub fn ret_type(&self) -> Option<RetType> { support::child(&self.syntax) } | ||
663 | } | ||
664 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
665 | pub struct ForType { | ||
666 | pub(crate) syntax: SyntaxNode, | ||
667 | } | ||
668 | impl AstNode for ForType { | ||
669 | fn can_cast(kind: SyntaxKind) -> bool { kind == FOR_TYPE } | ||
670 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
671 | if Self::can_cast(syntax.kind()) { | ||
672 | Some(Self { syntax }) | ||
673 | } else { | ||
674 | None | ||
675 | } | ||
676 | } | ||
677 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
678 | } | ||
679 | impl ForType { | ||
680 | pub fn for_kw_token(&self) -> Option<ForKw> { support::token(&self.syntax) } | ||
681 | pub fn type_param_list(&self) -> Option<TypeParamList> { support::child(&self.syntax) } | ||
682 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | ||
683 | } | ||
684 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
685 | pub struct ImplTraitType { | ||
686 | pub(crate) syntax: SyntaxNode, | ||
687 | } | ||
688 | impl AstNode for ImplTraitType { | ||
689 | fn can_cast(kind: SyntaxKind) -> bool { kind == IMPL_TRAIT_TYPE } | ||
690 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
691 | if Self::can_cast(syntax.kind()) { | ||
692 | Some(Self { syntax }) | ||
693 | } else { | ||
694 | None | ||
695 | } | ||
696 | } | ||
697 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
698 | } | ||
699 | impl ast::TypeBoundsOwner for ImplTraitType {} | ||
700 | impl ImplTraitType { | ||
701 | pub fn impl_kw_token(&self) -> Option<ImplKw> { support::token(&self.syntax) } | ||
702 | } | ||
703 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
704 | pub struct DynTraitType { | ||
705 | pub(crate) syntax: SyntaxNode, | ||
706 | } | ||
707 | impl AstNode for DynTraitType { | ||
708 | fn can_cast(kind: SyntaxKind) -> bool { kind == DYN_TRAIT_TYPE } | ||
709 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
710 | if Self::can_cast(syntax.kind()) { | ||
711 | Some(Self { syntax }) | ||
712 | } else { | ||
713 | None | ||
714 | } | ||
715 | } | ||
716 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
717 | } | ||
718 | impl ast::TypeBoundsOwner for DynTraitType {} | ||
719 | impl DynTraitType { | ||
720 | pub fn dyn_kw_token(&self) -> Option<DynKw> { support::token(&self.syntax) } | ||
721 | } | ||
722 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
723 | pub struct TupleExpr { | ||
724 | pub(crate) syntax: SyntaxNode, | ||
725 | } | ||
726 | impl AstNode for TupleExpr { | ||
727 | fn can_cast(kind: SyntaxKind) -> bool { kind == TUPLE_EXPR } | ||
728 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
729 | if Self::can_cast(syntax.kind()) { | ||
730 | Some(Self { syntax }) | ||
731 | } else { | ||
732 | None | ||
733 | } | ||
734 | } | ||
735 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
736 | } | ||
737 | impl ast::AttrsOwner for TupleExpr {} | ||
738 | impl TupleExpr { | ||
739 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } | ||
740 | pub fn exprs(&self) -> AstChildren<Expr> { support::children(&self.syntax) } | ||
741 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } | ||
742 | } | ||
743 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
744 | pub struct ArrayExpr { | ||
745 | pub(crate) syntax: SyntaxNode, | ||
746 | } | ||
747 | impl AstNode for ArrayExpr { | ||
748 | fn can_cast(kind: SyntaxKind) -> bool { kind == ARRAY_EXPR } | ||
749 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
750 | if Self::can_cast(syntax.kind()) { | ||
751 | Some(Self { syntax }) | ||
752 | } else { | ||
753 | None | ||
754 | } | ||
755 | } | ||
756 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
757 | } | ||
758 | impl ast::AttrsOwner for ArrayExpr {} | ||
759 | impl ArrayExpr { | ||
760 | pub fn l_brack_token(&self) -> Option<LBrack> { support::token(&self.syntax) } | ||
761 | pub fn exprs(&self) -> AstChildren<Expr> { support::children(&self.syntax) } | ||
762 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } | ||
763 | pub fn r_brack_token(&self) -> Option<RBrack> { support::token(&self.syntax) } | ||
764 | } | ||
765 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
766 | pub struct ParenExpr { | ||
767 | pub(crate) syntax: SyntaxNode, | ||
768 | } | ||
769 | impl AstNode for ParenExpr { | ||
770 | fn can_cast(kind: SyntaxKind) -> bool { kind == PAREN_EXPR } | ||
771 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
772 | if Self::can_cast(syntax.kind()) { | ||
773 | Some(Self { syntax }) | ||
774 | } else { | ||
775 | None | ||
776 | } | ||
777 | } | ||
778 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
779 | } | ||
780 | impl ast::AttrsOwner for ParenExpr {} | ||
781 | impl ParenExpr { | ||
782 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } | ||
783 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
784 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } | ||
785 | } | ||
786 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
787 | pub struct PathExpr { | ||
788 | pub(crate) syntax: SyntaxNode, | ||
789 | } | ||
790 | impl AstNode for PathExpr { | ||
791 | fn can_cast(kind: SyntaxKind) -> bool { kind == PATH_EXPR } | ||
792 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
793 | if Self::can_cast(syntax.kind()) { | ||
794 | Some(Self { syntax }) | ||
795 | } else { | ||
796 | None | ||
797 | } | ||
798 | } | ||
799 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
800 | } | ||
801 | impl PathExpr { | ||
802 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | ||
803 | } | ||
804 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
805 | pub struct LambdaExpr { | ||
806 | pub(crate) syntax: SyntaxNode, | ||
807 | } | ||
808 | impl AstNode for LambdaExpr { | ||
809 | fn can_cast(kind: SyntaxKind) -> bool { kind == LAMBDA_EXPR } | ||
810 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
811 | if Self::can_cast(syntax.kind()) { | ||
812 | Some(Self { syntax }) | ||
813 | } else { | ||
814 | None | ||
815 | } | ||
816 | } | ||
817 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
818 | } | ||
819 | impl ast::AttrsOwner for LambdaExpr {} | ||
820 | impl LambdaExpr { | ||
821 | pub fn static_kw_token(&self) -> Option<StaticKw> { support::token(&self.syntax) } | ||
822 | pub fn async_kw_token(&self) -> Option<AsyncKw> { support::token(&self.syntax) } | ||
823 | pub fn move_kw_token(&self) -> Option<MoveKw> { support::token(&self.syntax) } | ||
824 | pub fn param_list(&self) -> Option<ParamList> { support::child(&self.syntax) } | ||
825 | pub fn ret_type(&self) -> Option<RetType> { support::child(&self.syntax) } | ||
826 | pub fn body(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
827 | } | ||
828 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
829 | pub struct IfExpr { | ||
830 | pub(crate) syntax: SyntaxNode, | ||
831 | } | ||
832 | impl AstNode for IfExpr { | ||
833 | fn can_cast(kind: SyntaxKind) -> bool { kind == IF_EXPR } | ||
834 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
835 | if Self::can_cast(syntax.kind()) { | ||
836 | Some(Self { syntax }) | ||
837 | } else { | ||
838 | None | ||
839 | } | ||
840 | } | ||
841 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
842 | } | ||
843 | impl ast::AttrsOwner for IfExpr {} | ||
844 | impl IfExpr { | ||
845 | pub fn if_kw_token(&self) -> Option<IfKw> { support::token(&self.syntax) } | ||
846 | pub fn condition(&self) -> Option<Condition> { support::child(&self.syntax) } | ||
847 | } | ||
848 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
849 | pub struct LoopExpr { | ||
850 | pub(crate) syntax: SyntaxNode, | ||
851 | } | ||
852 | impl AstNode for LoopExpr { | ||
853 | fn can_cast(kind: SyntaxKind) -> bool { kind == LOOP_EXPR } | ||
854 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
855 | if Self::can_cast(syntax.kind()) { | ||
856 | Some(Self { syntax }) | ||
857 | } else { | ||
858 | None | ||
859 | } | ||
860 | } | ||
861 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
862 | } | ||
863 | impl ast::AttrsOwner for LoopExpr {} | ||
864 | impl ast::LoopBodyOwner for LoopExpr {} | ||
865 | impl LoopExpr { | ||
866 | pub fn loop_kw_token(&self) -> Option<LoopKw> { support::token(&self.syntax) } | ||
867 | } | ||
868 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
869 | pub struct TryBlockExpr { | ||
870 | pub(crate) syntax: SyntaxNode, | ||
871 | } | ||
872 | impl AstNode for TryBlockExpr { | ||
873 | fn can_cast(kind: SyntaxKind) -> bool { kind == TRY_BLOCK_EXPR } | ||
874 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
875 | if Self::can_cast(syntax.kind()) { | ||
876 | Some(Self { syntax }) | ||
877 | } else { | ||
878 | None | ||
879 | } | ||
880 | } | ||
881 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
882 | } | ||
883 | impl ast::AttrsOwner for TryBlockExpr {} | ||
884 | impl TryBlockExpr { | ||
885 | pub fn try_kw_token(&self) -> Option<TryKw> { support::token(&self.syntax) } | ||
886 | pub fn body(&self) -> Option<BlockExpr> { support::child(&self.syntax) } | ||
887 | } | ||
888 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
889 | pub struct ForExpr { | ||
890 | pub(crate) syntax: SyntaxNode, | ||
891 | } | ||
892 | impl AstNode for ForExpr { | ||
893 | fn can_cast(kind: SyntaxKind) -> bool { kind == FOR_EXPR } | ||
894 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
895 | if Self::can_cast(syntax.kind()) { | ||
896 | Some(Self { syntax }) | ||
897 | } else { | ||
898 | None | ||
899 | } | ||
900 | } | ||
901 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
902 | } | ||
903 | impl ast::AttrsOwner for ForExpr {} | ||
904 | impl ast::LoopBodyOwner for ForExpr {} | ||
905 | impl ForExpr { | ||
906 | pub fn for_kw_token(&self) -> Option<ForKw> { support::token(&self.syntax) } | ||
907 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | ||
908 | pub fn in_kw_token(&self) -> Option<InKw> { support::token(&self.syntax) } | ||
909 | pub fn iterable(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
910 | } | ||
911 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
912 | pub struct WhileExpr { | ||
913 | pub(crate) syntax: SyntaxNode, | ||
914 | } | ||
915 | impl AstNode for WhileExpr { | ||
916 | fn can_cast(kind: SyntaxKind) -> bool { kind == WHILE_EXPR } | ||
917 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
918 | if Self::can_cast(syntax.kind()) { | ||
919 | Some(Self { syntax }) | ||
920 | } else { | ||
921 | None | ||
922 | } | ||
923 | } | ||
924 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
925 | } | ||
926 | impl ast::AttrsOwner for WhileExpr {} | ||
927 | impl ast::LoopBodyOwner for WhileExpr {} | ||
928 | impl WhileExpr { | ||
929 | pub fn while_kw_token(&self) -> Option<WhileKw> { support::token(&self.syntax) } | ||
930 | pub fn condition(&self) -> Option<Condition> { support::child(&self.syntax) } | ||
931 | } | ||
932 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
933 | pub struct ContinueExpr { | ||
934 | pub(crate) syntax: SyntaxNode, | ||
935 | } | ||
936 | impl AstNode for ContinueExpr { | ||
937 | fn can_cast(kind: SyntaxKind) -> bool { kind == CONTINUE_EXPR } | ||
938 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
939 | if Self::can_cast(syntax.kind()) { | ||
940 | Some(Self { syntax }) | ||
941 | } else { | ||
942 | None | ||
943 | } | ||
944 | } | ||
945 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
946 | } | ||
947 | impl ast::AttrsOwner for ContinueExpr {} | ||
948 | impl ContinueExpr { | ||
949 | pub fn continue_kw_token(&self) -> Option<ContinueKw> { support::token(&self.syntax) } | ||
950 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } | ||
951 | } | ||
952 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
953 | pub struct BreakExpr { | ||
954 | pub(crate) syntax: SyntaxNode, | ||
955 | } | ||
956 | impl AstNode for BreakExpr { | ||
957 | fn can_cast(kind: SyntaxKind) -> bool { kind == BREAK_EXPR } | ||
958 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
959 | if Self::can_cast(syntax.kind()) { | ||
960 | Some(Self { syntax }) | ||
961 | } else { | ||
962 | None | ||
963 | } | ||
964 | } | ||
965 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
966 | } | ||
967 | impl ast::AttrsOwner for BreakExpr {} | ||
968 | impl BreakExpr { | ||
969 | pub fn break_kw_token(&self) -> Option<BreakKw> { support::token(&self.syntax) } | ||
970 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } | ||
971 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
972 | } | ||
973 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
974 | pub struct Label { | ||
975 | pub(crate) syntax: SyntaxNode, | ||
976 | } | ||
977 | impl AstNode for Label { | ||
978 | fn can_cast(kind: SyntaxKind) -> bool { kind == LABEL } | ||
979 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
980 | if Self::can_cast(syntax.kind()) { | ||
981 | Some(Self { syntax }) | ||
982 | } else { | ||
983 | None | ||
984 | } | ||
985 | } | ||
986 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
987 | } | ||
988 | impl Label { | ||
989 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } | ||
990 | } | ||
991 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
992 | pub struct BlockExpr { | ||
993 | pub(crate) syntax: SyntaxNode, | ||
994 | } | ||
995 | impl AstNode for BlockExpr { | ||
996 | fn can_cast(kind: SyntaxKind) -> bool { kind == BLOCK_EXPR } | ||
997 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
998 | if Self::can_cast(syntax.kind()) { | ||
999 | Some(Self { syntax }) | ||
1000 | } else { | ||
1001 | None | ||
1002 | } | ||
1003 | } | ||
1004 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1005 | } | ||
1006 | impl ast::AttrsOwner for BlockExpr {} | ||
1007 | impl BlockExpr { | ||
1008 | pub fn label(&self) -> Option<Label> { support::child(&self.syntax) } | ||
1009 | pub fn unsafe_kw_token(&self) -> Option<UnsafeKw> { support::token(&self.syntax) } | ||
1010 | pub fn block(&self) -> Option<Block> { support::child(&self.syntax) } | ||
1011 | } | ||
1012 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1013 | pub struct ReturnExpr { | ||
1014 | pub(crate) syntax: SyntaxNode, | ||
1015 | } | ||
1016 | impl AstNode for ReturnExpr { | ||
1017 | fn can_cast(kind: SyntaxKind) -> bool { kind == RETURN_EXPR } | ||
1018 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1019 | if Self::can_cast(syntax.kind()) { | ||
1020 | Some(Self { syntax }) | ||
1021 | } else { | ||
1022 | None | ||
1023 | } | ||
1024 | } | ||
1025 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1026 | } | ||
1027 | impl ast::AttrsOwner for ReturnExpr {} | ||
1028 | impl ReturnExpr { | ||
1029 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1030 | } | ||
1031 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1032 | pub struct CallExpr { | ||
1033 | pub(crate) syntax: SyntaxNode, | ||
1034 | } | ||
1035 | impl AstNode for CallExpr { | ||
1036 | fn can_cast(kind: SyntaxKind) -> bool { kind == CALL_EXPR } | ||
1037 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1038 | if Self::can_cast(syntax.kind()) { | ||
1039 | Some(Self { syntax }) | ||
1040 | } else { | ||
1041 | None | ||
1042 | } | ||
1043 | } | ||
1044 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1045 | } | ||
1046 | impl ast::ArgListOwner for CallExpr {} | ||
1047 | impl CallExpr { | ||
1048 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1049 | } | ||
1050 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1051 | pub struct MethodCallExpr { | ||
1052 | pub(crate) syntax: SyntaxNode, | ||
1053 | } | ||
1054 | impl AstNode for MethodCallExpr { | ||
1055 | fn can_cast(kind: SyntaxKind) -> bool { kind == METHOD_CALL_EXPR } | ||
1056 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1057 | if Self::can_cast(syntax.kind()) { | ||
1058 | Some(Self { syntax }) | ||
1059 | } else { | ||
1060 | None | ||
1061 | } | ||
1062 | } | ||
1063 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1064 | } | ||
1065 | impl ast::AttrsOwner for MethodCallExpr {} | ||
1066 | impl ast::ArgListOwner for MethodCallExpr {} | ||
1067 | impl MethodCallExpr { | ||
1068 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1069 | pub fn dot_token(&self) -> Option<Dot> { support::token(&self.syntax) } | ||
1070 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } | ||
1071 | pub fn type_arg_list(&self) -> Option<TypeArgList> { support::child(&self.syntax) } | ||
1072 | } | ||
1073 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1074 | pub struct IndexExpr { | ||
1075 | pub(crate) syntax: SyntaxNode, | ||
1076 | } | ||
1077 | impl AstNode for IndexExpr { | ||
1078 | fn can_cast(kind: SyntaxKind) -> bool { kind == INDEX_EXPR } | ||
1079 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1080 | if Self::can_cast(syntax.kind()) { | ||
1081 | Some(Self { syntax }) | ||
1082 | } else { | ||
1083 | None | ||
1084 | } | ||
1085 | } | ||
1086 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1087 | } | ||
1088 | impl ast::AttrsOwner for IndexExpr {} | ||
1089 | impl IndexExpr { | ||
1090 | pub fn l_brack_token(&self) -> Option<LBrack> { support::token(&self.syntax) } | ||
1091 | pub fn r_brack_token(&self) -> Option<RBrack> { support::token(&self.syntax) } | ||
1092 | } | ||
1093 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1094 | pub struct FieldExpr { | ||
1095 | pub(crate) syntax: SyntaxNode, | ||
1096 | } | ||
1097 | impl AstNode for FieldExpr { | ||
1098 | fn can_cast(kind: SyntaxKind) -> bool { kind == FIELD_EXPR } | ||
1099 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1100 | if Self::can_cast(syntax.kind()) { | ||
1101 | Some(Self { syntax }) | ||
1102 | } else { | ||
1103 | None | ||
1104 | } | ||
1105 | } | ||
1106 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1107 | } | ||
1108 | impl ast::AttrsOwner for FieldExpr {} | ||
1109 | impl FieldExpr { | ||
1110 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1111 | pub fn dot_token(&self) -> Option<Dot> { support::token(&self.syntax) } | ||
1112 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } | ||
1113 | } | ||
1114 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1115 | pub struct AwaitExpr { | ||
1116 | pub(crate) syntax: SyntaxNode, | ||
1117 | } | ||
1118 | impl AstNode for AwaitExpr { | ||
1119 | fn can_cast(kind: SyntaxKind) -> bool { kind == AWAIT_EXPR } | ||
1120 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1121 | if Self::can_cast(syntax.kind()) { | ||
1122 | Some(Self { syntax }) | ||
1123 | } else { | ||
1124 | None | ||
1125 | } | ||
1126 | } | ||
1127 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1128 | } | ||
1129 | impl ast::AttrsOwner for AwaitExpr {} | ||
1130 | impl AwaitExpr { | ||
1131 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1132 | pub fn dot_token(&self) -> Option<Dot> { support::token(&self.syntax) } | ||
1133 | pub fn await_kw_token(&self) -> Option<AwaitKw> { support::token(&self.syntax) } | ||
1134 | } | ||
1135 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1136 | pub struct TryExpr { | ||
1137 | pub(crate) syntax: SyntaxNode, | ||
1138 | } | ||
1139 | impl AstNode for TryExpr { | ||
1140 | fn can_cast(kind: SyntaxKind) -> bool { kind == TRY_EXPR } | ||
1141 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1142 | if Self::can_cast(syntax.kind()) { | ||
1143 | Some(Self { syntax }) | ||
1144 | } else { | ||
1145 | None | ||
1146 | } | ||
1147 | } | ||
1148 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1149 | } | ||
1150 | impl ast::AttrsOwner for TryExpr {} | ||
1151 | impl TryExpr { | ||
1152 | pub fn try_kw_token(&self) -> Option<TryKw> { support::token(&self.syntax) } | ||
1153 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1154 | } | ||
1155 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1156 | pub struct CastExpr { | ||
1157 | pub(crate) syntax: SyntaxNode, | ||
1158 | } | ||
1159 | impl AstNode for CastExpr { | ||
1160 | fn can_cast(kind: SyntaxKind) -> bool { kind == CAST_EXPR } | ||
1161 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1162 | if Self::can_cast(syntax.kind()) { | ||
1163 | Some(Self { syntax }) | ||
1164 | } else { | ||
1165 | None | ||
1166 | } | ||
1167 | } | ||
1168 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1169 | } | ||
1170 | impl ast::AttrsOwner for CastExpr {} | ||
1171 | impl CastExpr { | ||
1172 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1173 | pub fn as_kw_token(&self) -> Option<AsKw> { support::token(&self.syntax) } | ||
1174 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | ||
1175 | } | ||
1176 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1177 | pub struct RefExpr { | ||
1178 | pub(crate) syntax: SyntaxNode, | ||
1179 | } | ||
1180 | impl AstNode for RefExpr { | ||
1181 | fn can_cast(kind: SyntaxKind) -> bool { kind == REF_EXPR } | ||
1182 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1183 | if Self::can_cast(syntax.kind()) { | ||
1184 | Some(Self { syntax }) | ||
1185 | } else { | ||
1186 | None | ||
1187 | } | ||
1188 | } | ||
1189 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1190 | } | ||
1191 | impl ast::AttrsOwner for RefExpr {} | ||
1192 | impl RefExpr { | ||
1193 | pub fn amp_token(&self) -> Option<Amp> { support::token(&self.syntax) } | ||
1194 | pub fn raw_kw_token(&self) -> Option<RawKw> { support::token(&self.syntax) } | ||
1195 | pub fn mut_kw_token(&self) -> Option<MutKw> { support::token(&self.syntax) } | ||
1196 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1197 | } | ||
1198 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1199 | pub struct PrefixExpr { | ||
1200 | pub(crate) syntax: SyntaxNode, | ||
1201 | } | ||
1202 | impl AstNode for PrefixExpr { | ||
1203 | fn can_cast(kind: SyntaxKind) -> bool { kind == PREFIX_EXPR } | ||
1204 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1205 | if Self::can_cast(syntax.kind()) { | ||
1206 | Some(Self { syntax }) | ||
1207 | } else { | ||
1208 | None | ||
1209 | } | ||
1210 | } | ||
1211 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1212 | } | ||
1213 | impl ast::AttrsOwner for PrefixExpr {} | ||
1214 | impl PrefixExpr { | ||
1215 | pub fn prefix_op_token(&self) -> Option<PrefixOp> { support::token(&self.syntax) } | ||
1216 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1217 | } | ||
1218 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1219 | pub struct BoxExpr { | ||
1220 | pub(crate) syntax: SyntaxNode, | ||
1221 | } | ||
1222 | impl AstNode for BoxExpr { | ||
1223 | fn can_cast(kind: SyntaxKind) -> bool { kind == BOX_EXPR } | ||
1224 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1225 | if Self::can_cast(syntax.kind()) { | ||
1226 | Some(Self { syntax }) | ||
1227 | } else { | ||
1228 | None | ||
1229 | } | ||
1230 | } | ||
1231 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1232 | } | ||
1233 | impl ast::AttrsOwner for BoxExpr {} | ||
1234 | impl BoxExpr { | ||
1235 | pub fn box_kw_token(&self) -> Option<BoxKw> { support::token(&self.syntax) } | ||
1236 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1237 | } | ||
1238 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1239 | pub struct RangeExpr { | ||
1240 | pub(crate) syntax: SyntaxNode, | ||
1241 | } | ||
1242 | impl AstNode for RangeExpr { | ||
1243 | fn can_cast(kind: SyntaxKind) -> bool { kind == RANGE_EXPR } | ||
1244 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1245 | if Self::can_cast(syntax.kind()) { | ||
1246 | Some(Self { syntax }) | ||
1247 | } else { | ||
1248 | None | ||
1249 | } | ||
1250 | } | ||
1251 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1252 | } | ||
1253 | impl ast::AttrsOwner for RangeExpr {} | ||
1254 | impl RangeExpr { | ||
1255 | pub fn range_op_token(&self) -> Option<RangeOp> { support::token(&self.syntax) } | ||
1256 | } | ||
1257 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1258 | pub struct BinExpr { | ||
1259 | pub(crate) syntax: SyntaxNode, | ||
1260 | } | ||
1261 | impl AstNode for BinExpr { | ||
1262 | fn can_cast(kind: SyntaxKind) -> bool { kind == BIN_EXPR } | ||
1263 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1264 | if Self::can_cast(syntax.kind()) { | ||
1265 | Some(Self { syntax }) | ||
1266 | } else { | ||
1267 | None | ||
1268 | } | ||
1269 | } | ||
1270 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1271 | } | ||
1272 | impl ast::AttrsOwner for BinExpr {} | ||
1273 | impl BinExpr { | ||
1274 | pub fn bin_op_token(&self) -> Option<BinOp> { support::token(&self.syntax) } | ||
1275 | } | ||
1276 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1277 | pub struct Literal { | ||
1278 | pub(crate) syntax: SyntaxNode, | ||
1279 | } | ||
1280 | impl AstNode for Literal { | ||
1281 | fn can_cast(kind: SyntaxKind) -> bool { kind == LITERAL } | ||
1282 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1283 | if Self::can_cast(syntax.kind()) { | ||
1284 | Some(Self { syntax }) | ||
1285 | } else { | ||
1286 | None | ||
1287 | } | ||
1288 | } | ||
1289 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1290 | } | ||
1291 | impl Literal { | ||
1292 | pub fn literal_token_token(&self) -> Option<LiteralToken> { support::token(&self.syntax) } | ||
1293 | } | ||
1294 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1295 | pub struct MatchExpr { | ||
1296 | pub(crate) syntax: SyntaxNode, | ||
1297 | } | ||
1298 | impl AstNode for MatchExpr { | ||
1299 | fn can_cast(kind: SyntaxKind) -> bool { kind == MATCH_EXPR } | ||
1300 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1301 | if Self::can_cast(syntax.kind()) { | ||
1302 | Some(Self { syntax }) | ||
1303 | } else { | ||
1304 | None | ||
1305 | } | ||
1306 | } | ||
1307 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1308 | } | ||
1309 | impl ast::AttrsOwner for MatchExpr {} | ||
1310 | impl MatchExpr { | ||
1311 | pub fn match_kw_token(&self) -> Option<MatchKw> { support::token(&self.syntax) } | ||
1312 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1313 | pub fn match_arm_list(&self) -> Option<MatchArmList> { support::child(&self.syntax) } | ||
1314 | } | ||
1315 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1316 | pub struct MatchArmList { | ||
1317 | pub(crate) syntax: SyntaxNode, | ||
1318 | } | ||
1319 | impl AstNode for MatchArmList { | ||
1320 | fn can_cast(kind: SyntaxKind) -> bool { kind == MATCH_ARM_LIST } | ||
1321 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1322 | if Self::can_cast(syntax.kind()) { | ||
1323 | Some(Self { syntax }) | ||
1324 | } else { | ||
1325 | None | ||
1326 | } | ||
1327 | } | ||
1328 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1329 | } | ||
1330 | impl ast::AttrsOwner for MatchArmList {} | ||
1331 | impl MatchArmList { | ||
1332 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } | ||
1333 | pub fn arms(&self) -> AstChildren<MatchArm> { support::children(&self.syntax) } | ||
1334 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } | ||
1335 | } | ||
1336 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1337 | pub struct MatchArm { | ||
1338 | pub(crate) syntax: SyntaxNode, | ||
1339 | } | ||
1340 | impl AstNode for MatchArm { | ||
1341 | fn can_cast(kind: SyntaxKind) -> bool { kind == MATCH_ARM } | ||
1342 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1343 | if Self::can_cast(syntax.kind()) { | ||
1344 | Some(Self { syntax }) | ||
1345 | } else { | ||
1346 | None | ||
1347 | } | ||
1348 | } | ||
1349 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1350 | } | ||
1351 | impl ast::AttrsOwner for MatchArm {} | ||
1352 | impl MatchArm { | ||
1353 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | ||
1354 | pub fn guard(&self) -> Option<MatchGuard> { support::child(&self.syntax) } | ||
1355 | pub fn fat_arrow_token(&self) -> Option<FatArrow> { support::token(&self.syntax) } | ||
1356 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1357 | } | ||
1358 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1359 | pub struct MatchGuard { | ||
1360 | pub(crate) syntax: SyntaxNode, | ||
1361 | } | ||
1362 | impl AstNode for MatchGuard { | ||
1363 | fn can_cast(kind: SyntaxKind) -> bool { kind == MATCH_GUARD } | ||
1364 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1365 | if Self::can_cast(syntax.kind()) { | ||
1366 | Some(Self { syntax }) | ||
1367 | } else { | ||
1368 | None | ||
1369 | } | ||
1370 | } | ||
1371 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1372 | } | ||
1373 | impl MatchGuard { | ||
1374 | pub fn if_kw_token(&self) -> Option<IfKw> { support::token(&self.syntax) } | ||
1375 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1376 | } | ||
1377 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1378 | pub struct RecordLit { | ||
1379 | pub(crate) syntax: SyntaxNode, | ||
1380 | } | ||
1381 | impl AstNode for RecordLit { | ||
1382 | fn can_cast(kind: SyntaxKind) -> bool { kind == RECORD_LIT } | ||
1383 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1384 | if Self::can_cast(syntax.kind()) { | ||
1385 | Some(Self { syntax }) | ||
1386 | } else { | ||
1387 | None | ||
1388 | } | ||
1389 | } | ||
1390 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1391 | } | ||
1392 | impl RecordLit { | ||
1393 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | ||
1394 | pub fn record_field_list(&self) -> Option<RecordFieldList> { support::child(&self.syntax) } | ||
1395 | } | ||
1396 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1397 | pub struct RecordFieldList { | ||
1398 | pub(crate) syntax: SyntaxNode, | ||
1399 | } | ||
1400 | impl AstNode for RecordFieldList { | ||
1401 | fn can_cast(kind: SyntaxKind) -> bool { kind == RECORD_FIELD_LIST } | ||
1402 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1403 | if Self::can_cast(syntax.kind()) { | ||
1404 | Some(Self { syntax }) | ||
1405 | } else { | ||
1406 | None | ||
1407 | } | ||
1408 | } | ||
1409 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1410 | } | ||
1411 | impl RecordFieldList { | ||
1412 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } | ||
1413 | pub fn fields(&self) -> AstChildren<RecordField> { support::children(&self.syntax) } | ||
1414 | pub fn dotdot_token(&self) -> Option<Dotdot> { support::token(&self.syntax) } | ||
1415 | pub fn spread(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1416 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } | ||
1417 | } | ||
1418 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1419 | pub struct RecordField { | ||
1420 | pub(crate) syntax: SyntaxNode, | ||
1421 | } | ||
1422 | impl AstNode for RecordField { | ||
1423 | fn can_cast(kind: SyntaxKind) -> bool { kind == RECORD_FIELD } | ||
1424 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1425 | if Self::can_cast(syntax.kind()) { | ||
1426 | Some(Self { syntax }) | ||
1427 | } else { | ||
1428 | None | ||
1429 | } | ||
1430 | } | ||
1431 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1432 | } | ||
1433 | impl ast::AttrsOwner for RecordField {} | ||
1434 | impl RecordField { | ||
1435 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } | ||
1436 | pub fn colon_token(&self) -> Option<Colon> { support::token(&self.syntax) } | ||
1437 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1438 | } | ||
1439 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1440 | pub struct OrPat { | ||
1441 | pub(crate) syntax: SyntaxNode, | ||
1442 | } | ||
1443 | impl AstNode for OrPat { | ||
1444 | fn can_cast(kind: SyntaxKind) -> bool { kind == OR_PAT } | ||
1445 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1446 | if Self::can_cast(syntax.kind()) { | ||
1447 | Some(Self { syntax }) | ||
1448 | } else { | ||
1449 | None | ||
1450 | } | ||
1451 | } | ||
1452 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1453 | } | ||
1454 | impl OrPat { | ||
1455 | pub fn pats(&self) -> AstChildren<Pat> { support::children(&self.syntax) } | ||
1456 | } | ||
1457 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1458 | pub struct ParenPat { | ||
1459 | pub(crate) syntax: SyntaxNode, | ||
1460 | } | ||
1461 | impl AstNode for ParenPat { | ||
1462 | fn can_cast(kind: SyntaxKind) -> bool { kind == PAREN_PAT } | ||
1463 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1464 | if Self::can_cast(syntax.kind()) { | ||
1465 | Some(Self { syntax }) | ||
1466 | } else { | ||
1467 | None | ||
1468 | } | ||
1469 | } | ||
1470 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1471 | } | ||
1472 | impl ParenPat { | ||
1473 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } | ||
1474 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | ||
1475 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } | ||
1476 | } | ||
1477 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1478 | pub struct RefPat { | ||
1479 | pub(crate) syntax: SyntaxNode, | ||
1480 | } | ||
1481 | impl AstNode for RefPat { | ||
1482 | fn can_cast(kind: SyntaxKind) -> bool { kind == REF_PAT } | ||
1483 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1484 | if Self::can_cast(syntax.kind()) { | ||
1485 | Some(Self { syntax }) | ||
1486 | } else { | ||
1487 | None | ||
1488 | } | ||
1489 | } | ||
1490 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1491 | } | ||
1492 | impl RefPat { | ||
1493 | pub fn amp_token(&self) -> Option<Amp> { support::token(&self.syntax) } | ||
1494 | pub fn mut_kw_token(&self) -> Option<MutKw> { support::token(&self.syntax) } | ||
1495 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | ||
1496 | } | ||
1497 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1498 | pub struct BoxPat { | ||
1499 | pub(crate) syntax: SyntaxNode, | ||
1500 | } | ||
1501 | impl AstNode for BoxPat { | ||
1502 | fn can_cast(kind: SyntaxKind) -> bool { kind == BOX_PAT } | ||
1503 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1504 | if Self::can_cast(syntax.kind()) { | ||
1505 | Some(Self { syntax }) | ||
1506 | } else { | ||
1507 | None | ||
1508 | } | ||
1509 | } | ||
1510 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1511 | } | ||
1512 | impl BoxPat { | ||
1513 | pub fn box_kw_token(&self) -> Option<BoxKw> { support::token(&self.syntax) } | ||
1514 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | ||
1515 | } | ||
1516 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1517 | pub struct BindPat { | ||
1518 | pub(crate) syntax: SyntaxNode, | ||
1519 | } | ||
1520 | impl AstNode for BindPat { | ||
1521 | fn can_cast(kind: SyntaxKind) -> bool { kind == BIND_PAT } | ||
1522 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1523 | if Self::can_cast(syntax.kind()) { | ||
1524 | Some(Self { syntax }) | ||
1525 | } else { | ||
1526 | None | ||
1527 | } | ||
1528 | } | ||
1529 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1530 | } | ||
1531 | impl ast::AttrsOwner for BindPat {} | ||
1532 | impl ast::NameOwner for BindPat {} | ||
1533 | impl BindPat { | ||
1534 | pub fn ref_kw_token(&self) -> Option<RefKw> { support::token(&self.syntax) } | ||
1535 | pub fn mut_kw_token(&self) -> Option<MutKw> { support::token(&self.syntax) } | ||
1536 | pub fn at_token(&self) -> Option<At> { support::token(&self.syntax) } | ||
1537 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | ||
1538 | } | ||
1539 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1540 | pub struct PlaceholderPat { | ||
1541 | pub(crate) syntax: SyntaxNode, | ||
1542 | } | ||
1543 | impl AstNode for PlaceholderPat { | ||
1544 | fn can_cast(kind: SyntaxKind) -> bool { kind == PLACEHOLDER_PAT } | ||
1545 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1546 | if Self::can_cast(syntax.kind()) { | ||
1547 | Some(Self { syntax }) | ||
1548 | } else { | ||
1549 | None | ||
1550 | } | ||
1551 | } | ||
1552 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1553 | } | ||
1554 | impl PlaceholderPat { | ||
1555 | pub fn underscore_token(&self) -> Option<Underscore> { support::token(&self.syntax) } | ||
1556 | } | ||
1557 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1558 | pub struct DotDotPat { | ||
1559 | pub(crate) syntax: SyntaxNode, | ||
1560 | } | ||
1561 | impl AstNode for DotDotPat { | ||
1562 | fn can_cast(kind: SyntaxKind) -> bool { kind == DOT_DOT_PAT } | ||
1563 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1564 | if Self::can_cast(syntax.kind()) { | ||
1565 | Some(Self { syntax }) | ||
1566 | } else { | ||
1567 | None | ||
1568 | } | ||
1569 | } | ||
1570 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1571 | } | ||
1572 | impl DotDotPat { | ||
1573 | pub fn dotdot_token(&self) -> Option<Dotdot> { support::token(&self.syntax) } | ||
1574 | } | ||
1575 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1576 | pub struct PathPat { | ||
1577 | pub(crate) syntax: SyntaxNode, | ||
1578 | } | ||
1579 | impl AstNode for PathPat { | ||
1580 | fn can_cast(kind: SyntaxKind) -> bool { kind == PATH_PAT } | ||
1581 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1582 | if Self::can_cast(syntax.kind()) { | ||
1583 | Some(Self { syntax }) | ||
1584 | } else { | ||
1585 | None | ||
1586 | } | ||
1587 | } | ||
1588 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1589 | } | ||
1590 | impl PathPat { | ||
1591 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | ||
1592 | } | ||
1593 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1594 | pub struct SlicePat { | ||
1595 | pub(crate) syntax: SyntaxNode, | ||
1596 | } | ||
1597 | impl AstNode for SlicePat { | ||
1598 | fn can_cast(kind: SyntaxKind) -> bool { kind == SLICE_PAT } | ||
1599 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1600 | if Self::can_cast(syntax.kind()) { | ||
1601 | Some(Self { syntax }) | ||
1602 | } else { | ||
1603 | None | ||
1604 | } | ||
1605 | } | ||
1606 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1607 | } | ||
1608 | impl SlicePat { | ||
1609 | pub fn l_brack_token(&self) -> Option<LBrack> { support::token(&self.syntax) } | ||
1610 | pub fn args(&self) -> AstChildren<Pat> { support::children(&self.syntax) } | ||
1611 | pub fn r_brack_token(&self) -> Option<RBrack> { support::token(&self.syntax) } | ||
1612 | } | ||
1613 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1614 | pub struct RangePat { | ||
1615 | pub(crate) syntax: SyntaxNode, | ||
1616 | } | ||
1617 | impl AstNode for RangePat { | ||
1618 | fn can_cast(kind: SyntaxKind) -> bool { kind == RANGE_PAT } | ||
1619 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1620 | if Self::can_cast(syntax.kind()) { | ||
1621 | Some(Self { syntax }) | ||
1622 | } else { | ||
1623 | None | ||
1624 | } | ||
1625 | } | ||
1626 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1627 | } | ||
1628 | impl RangePat { | ||
1629 | pub fn range_separator_token(&self) -> Option<RangeSeparator> { support::token(&self.syntax) } | ||
1630 | } | ||
1631 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1632 | pub struct LiteralPat { | ||
1633 | pub(crate) syntax: SyntaxNode, | ||
1634 | } | ||
1635 | impl AstNode for LiteralPat { | ||
1636 | fn can_cast(kind: SyntaxKind) -> bool { kind == LITERAL_PAT } | ||
1637 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1638 | if Self::can_cast(syntax.kind()) { | ||
1639 | Some(Self { syntax }) | ||
1640 | } else { | ||
1641 | None | ||
1642 | } | ||
1643 | } | ||
1644 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1645 | } | ||
1646 | impl LiteralPat { | ||
1647 | pub fn literal(&self) -> Option<Literal> { support::child(&self.syntax) } | ||
1648 | } | ||
1649 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1650 | pub struct MacroPat { | ||
1651 | pub(crate) syntax: SyntaxNode, | ||
1652 | } | ||
1653 | impl AstNode for MacroPat { | ||
1654 | fn can_cast(kind: SyntaxKind) -> bool { kind == MACRO_PAT } | ||
1655 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1656 | if Self::can_cast(syntax.kind()) { | ||
1657 | Some(Self { syntax }) | ||
1658 | } else { | ||
1659 | None | ||
1660 | } | ||
1661 | } | ||
1662 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1663 | } | ||
1664 | impl MacroPat { | ||
1665 | pub fn macro_call(&self) -> Option<MacroCall> { support::child(&self.syntax) } | ||
1666 | } | ||
1667 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1668 | pub struct RecordPat { | ||
1669 | pub(crate) syntax: SyntaxNode, | ||
1670 | } | ||
1671 | impl AstNode for RecordPat { | ||
1672 | fn can_cast(kind: SyntaxKind) -> bool { kind == RECORD_PAT } | ||
1673 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1674 | if Self::can_cast(syntax.kind()) { | ||
1675 | Some(Self { syntax }) | ||
1676 | } else { | ||
1677 | None | ||
1678 | } | ||
1679 | } | ||
1680 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1681 | } | ||
1682 | impl RecordPat { | ||
1683 | pub fn record_field_pat_list(&self) -> Option<RecordFieldPatList> { | ||
1684 | support::child(&self.syntax) | ||
1685 | } | ||
1686 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | ||
1687 | } | ||
1688 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1689 | pub struct RecordFieldPatList { | ||
1690 | pub(crate) syntax: SyntaxNode, | ||
1691 | } | ||
1692 | impl AstNode for RecordFieldPatList { | ||
1693 | fn can_cast(kind: SyntaxKind) -> bool { kind == RECORD_FIELD_PAT_LIST } | ||
1694 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1695 | if Self::can_cast(syntax.kind()) { | ||
1696 | Some(Self { syntax }) | ||
1697 | } else { | ||
1698 | None | ||
1699 | } | ||
1700 | } | ||
1701 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1702 | } | ||
1703 | impl RecordFieldPatList { | ||
1704 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } | ||
1705 | pub fn pats(&self) -> AstChildren<RecordInnerPat> { support::children(&self.syntax) } | ||
1706 | pub fn record_field_pats(&self) -> AstChildren<RecordFieldPat> { | ||
1707 | support::children(&self.syntax) | ||
1708 | } | ||
1709 | pub fn bind_pats(&self) -> AstChildren<BindPat> { support::children(&self.syntax) } | ||
1710 | pub fn dotdot_token(&self) -> Option<Dotdot> { support::token(&self.syntax) } | ||
1711 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } | ||
1712 | } | ||
1713 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1714 | pub struct RecordFieldPat { | ||
1715 | pub(crate) syntax: SyntaxNode, | ||
1716 | } | ||
1717 | impl AstNode for RecordFieldPat { | ||
1718 | fn can_cast(kind: SyntaxKind) -> bool { kind == RECORD_FIELD_PAT } | ||
1719 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1720 | if Self::can_cast(syntax.kind()) { | ||
1721 | Some(Self { syntax }) | ||
1722 | } else { | ||
1723 | None | ||
1724 | } | ||
1725 | } | ||
1726 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1727 | } | ||
1728 | impl ast::AttrsOwner for RecordFieldPat {} | ||
1729 | impl ast::NameOwner for RecordFieldPat {} | ||
1730 | impl RecordFieldPat { | ||
1731 | pub fn colon_token(&self) -> Option<Colon> { support::token(&self.syntax) } | ||
1732 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | ||
1733 | } | ||
1734 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1735 | pub struct TupleStructPat { | ||
1736 | pub(crate) syntax: SyntaxNode, | ||
1737 | } | ||
1738 | impl AstNode for TupleStructPat { | ||
1739 | fn can_cast(kind: SyntaxKind) -> bool { kind == TUPLE_STRUCT_PAT } | ||
1740 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1741 | if Self::can_cast(syntax.kind()) { | ||
1742 | Some(Self { syntax }) | ||
1743 | } else { | ||
1744 | None | ||
1745 | } | ||
1746 | } | ||
1747 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1748 | } | ||
1749 | impl TupleStructPat { | ||
1750 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | ||
1751 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } | ||
1752 | pub fn args(&self) -> AstChildren<Pat> { support::children(&self.syntax) } | ||
1753 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } | ||
1754 | } | ||
1755 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1756 | pub struct TuplePat { | ||
1757 | pub(crate) syntax: SyntaxNode, | ||
1758 | } | ||
1759 | impl AstNode for TuplePat { | ||
1760 | fn can_cast(kind: SyntaxKind) -> bool { kind == TUPLE_PAT } | ||
1761 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1762 | if Self::can_cast(syntax.kind()) { | ||
1763 | Some(Self { syntax }) | ||
1764 | } else { | ||
1765 | None | ||
1766 | } | ||
1767 | } | ||
1768 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1769 | } | ||
1770 | impl TuplePat { | ||
1771 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } | ||
1772 | pub fn args(&self) -> AstChildren<Pat> { support::children(&self.syntax) } | ||
1773 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } | ||
1774 | } | ||
1775 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1776 | pub struct Visibility { | ||
1777 | pub(crate) syntax: SyntaxNode, | ||
1778 | } | ||
1779 | impl AstNode for Visibility { | ||
1780 | fn can_cast(kind: SyntaxKind) -> bool { kind == VISIBILITY } | ||
1781 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1782 | if Self::can_cast(syntax.kind()) { | ||
1783 | Some(Self { syntax }) | ||
1784 | } else { | ||
1785 | None | ||
1786 | } | ||
1787 | } | ||
1788 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1789 | } | ||
1790 | impl Visibility { | ||
1791 | pub fn pub_kw_token(&self) -> Option<PubKw> { support::token(&self.syntax) } | ||
1792 | pub fn super_kw_token(&self) -> Option<SuperKw> { support::token(&self.syntax) } | ||
1793 | pub fn self_kw_token(&self) -> Option<SelfKw> { support::token(&self.syntax) } | ||
1794 | pub fn crate_kw_token(&self) -> Option<CrateKw> { support::token(&self.syntax) } | ||
1795 | } | ||
1796 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1797 | pub struct Name { | ||
1798 | pub(crate) syntax: SyntaxNode, | ||
1799 | } | ||
1800 | impl AstNode for Name { | ||
1801 | fn can_cast(kind: SyntaxKind) -> bool { kind == NAME } | ||
1802 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1803 | if Self::can_cast(syntax.kind()) { | ||
1804 | Some(Self { syntax }) | ||
1805 | } else { | ||
1806 | None | ||
1807 | } | ||
1808 | } | ||
1809 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1810 | } | ||
1811 | impl Name { | ||
1812 | pub fn ident_token(&self) -> Option<Ident> { support::token(&self.syntax) } | ||
1813 | } | ||
1814 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1815 | pub struct NameRef { | ||
1816 | pub(crate) syntax: SyntaxNode, | ||
1817 | } | ||
1818 | impl AstNode for NameRef { | ||
1819 | fn can_cast(kind: SyntaxKind) -> bool { kind == NAME_REF } | ||
1820 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1821 | if Self::can_cast(syntax.kind()) { | ||
1822 | Some(Self { syntax }) | ||
1823 | } else { | ||
1824 | None | ||
1825 | } | ||
1826 | } | ||
1827 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1828 | } | ||
1829 | impl NameRef { | ||
1830 | pub fn name_ref_token_token(&self) -> Option<NameRefToken> { support::token(&self.syntax) } | ||
1831 | } | ||
1832 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1833 | pub struct MacroCall { | ||
1834 | pub(crate) syntax: SyntaxNode, | ||
1835 | } | ||
1836 | impl AstNode for MacroCall { | ||
1837 | fn can_cast(kind: SyntaxKind) -> bool { kind == MACRO_CALL } | ||
1838 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1839 | if Self::can_cast(syntax.kind()) { | ||
1840 | Some(Self { syntax }) | ||
1841 | } else { | ||
1842 | None | ||
1843 | } | ||
1844 | } | ||
1845 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1846 | } | ||
1847 | impl ast::NameOwner for MacroCall {} | ||
1848 | impl ast::AttrsOwner for MacroCall {} | ||
1849 | impl ast::DocCommentsOwner for MacroCall {} | ||
1850 | impl MacroCall { | ||
1851 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | ||
1852 | pub fn excl_token(&self) -> Option<Excl> { support::token(&self.syntax) } | ||
1853 | pub fn token_tree(&self) -> Option<TokenTree> { support::child(&self.syntax) } | ||
1854 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } | ||
1855 | } | ||
1856 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1857 | pub struct Attr { | ||
1858 | pub(crate) syntax: SyntaxNode, | ||
1859 | } | ||
1860 | impl AstNode for Attr { | ||
1861 | fn can_cast(kind: SyntaxKind) -> bool { kind == ATTR } | ||
1862 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1863 | if Self::can_cast(syntax.kind()) { | ||
1864 | Some(Self { syntax }) | ||
1865 | } else { | ||
1866 | None | ||
1867 | } | ||
1868 | } | ||
1869 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1870 | } | ||
1871 | impl Attr { | ||
1872 | pub fn pound_token(&self) -> Option<Pound> { support::token(&self.syntax) } | ||
1873 | pub fn excl_token(&self) -> Option<Excl> { support::token(&self.syntax) } | ||
1874 | pub fn l_brack_token(&self) -> Option<LBrack> { support::token(&self.syntax) } | ||
1875 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | ||
1876 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } | ||
1877 | pub fn input(&self) -> Option<AttrInput> { support::child(&self.syntax) } | ||
1878 | pub fn r_brack_token(&self) -> Option<RBrack> { support::token(&self.syntax) } | ||
1879 | } | ||
1880 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1881 | pub struct TokenTree { | ||
1882 | pub(crate) syntax: SyntaxNode, | ||
1883 | } | ||
1884 | impl AstNode for TokenTree { | ||
1885 | fn can_cast(kind: SyntaxKind) -> bool { kind == TOKEN_TREE } | ||
1886 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1887 | if Self::can_cast(syntax.kind()) { | ||
1888 | Some(Self { syntax }) | ||
1889 | } else { | ||
1890 | None | ||
1891 | } | ||
1892 | } | ||
1893 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1894 | } | ||
1895 | impl TokenTree {} | ||
1896 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1897 | pub struct TypeParamList { | ||
1898 | pub(crate) syntax: SyntaxNode, | ||
1899 | } | ||
1900 | impl AstNode for TypeParamList { | ||
1901 | fn can_cast(kind: SyntaxKind) -> bool { kind == TYPE_PARAM_LIST } | ||
1902 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1903 | if Self::can_cast(syntax.kind()) { | ||
1904 | Some(Self { syntax }) | ||
1905 | } else { | ||
1906 | None | ||
1907 | } | ||
1908 | } | ||
1909 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1910 | } | ||
1911 | impl TypeParamList { | ||
1912 | pub fn l_angle_token(&self) -> Option<LAngle> { support::token(&self.syntax) } | ||
1913 | pub fn generic_params(&self) -> AstChildren<GenericParam> { support::children(&self.syntax) } | ||
1914 | pub fn type_params(&self) -> AstChildren<TypeParam> { support::children(&self.syntax) } | ||
1915 | pub fn lifetime_params(&self) -> AstChildren<LifetimeParam> { support::children(&self.syntax) } | ||
1916 | pub fn const_params(&self) -> AstChildren<ConstParam> { support::children(&self.syntax) } | ||
1917 | pub fn r_angle_token(&self) -> Option<RAngle> { support::token(&self.syntax) } | ||
1918 | } | ||
1919 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1920 | pub struct TypeParam { | ||
1921 | pub(crate) syntax: SyntaxNode, | ||
1922 | } | ||
1923 | impl AstNode for TypeParam { | ||
1924 | fn can_cast(kind: SyntaxKind) -> bool { kind == TYPE_PARAM } | ||
1925 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1926 | if Self::can_cast(syntax.kind()) { | ||
1927 | Some(Self { syntax }) | ||
1928 | } else { | ||
1929 | None | ||
1930 | } | ||
1931 | } | ||
1932 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1933 | } | ||
1934 | impl ast::NameOwner for TypeParam {} | ||
1935 | impl ast::AttrsOwner for TypeParam {} | ||
1936 | impl ast::TypeBoundsOwner for TypeParam {} | ||
1937 | impl TypeParam { | ||
1938 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } | ||
1939 | pub fn default_type(&self) -> Option<TypeRef> { support::child(&self.syntax) } | ||
1940 | } | ||
1941 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1942 | pub struct ConstParam { | ||
1943 | pub(crate) syntax: SyntaxNode, | ||
1944 | } | ||
1945 | impl AstNode for ConstParam { | ||
1946 | fn can_cast(kind: SyntaxKind) -> bool { kind == CONST_PARAM } | ||
1947 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1948 | if Self::can_cast(syntax.kind()) { | ||
1949 | Some(Self { syntax }) | ||
1950 | } else { | ||
1951 | None | ||
1952 | } | ||
1953 | } | ||
1954 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1955 | } | ||
1956 | impl ast::NameOwner for ConstParam {} | ||
1957 | impl ast::AttrsOwner for ConstParam {} | ||
1958 | impl ast::TypeAscriptionOwner for ConstParam {} | ||
1959 | impl ConstParam { | ||
1960 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } | ||
1961 | pub fn default_val(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
1962 | } | ||
1963 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1964 | pub struct LifetimeParam { | ||
1965 | pub(crate) syntax: SyntaxNode, | ||
1966 | } | ||
1967 | impl AstNode for LifetimeParam { | ||
1968 | fn can_cast(kind: SyntaxKind) -> bool { kind == LIFETIME_PARAM } | ||
1969 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1970 | if Self::can_cast(syntax.kind()) { | ||
1971 | Some(Self { syntax }) | ||
1972 | } else { | ||
1973 | None | ||
1974 | } | ||
1975 | } | ||
1976 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1977 | } | ||
1978 | impl ast::AttrsOwner for LifetimeParam {} | ||
1979 | impl LifetimeParam { | ||
1980 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } | ||
1981 | } | ||
1982 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1983 | pub struct TypeBound { | ||
1984 | pub(crate) syntax: SyntaxNode, | ||
1985 | } | ||
1986 | impl AstNode for TypeBound { | ||
1987 | fn can_cast(kind: SyntaxKind) -> bool { kind == TYPE_BOUND } | ||
1988 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
1989 | if Self::can_cast(syntax.kind()) { | ||
1990 | Some(Self { syntax }) | ||
1991 | } else { | ||
1992 | None | ||
1993 | } | ||
1994 | } | ||
1995 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
1996 | } | ||
1997 | impl TypeBound { | ||
1998 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } | ||
1999 | pub fn const_kw_token(&self) -> Option<ConstKw> { support::token(&self.syntax) } | ||
2000 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | ||
2001 | } | ||
2002 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2003 | pub struct TypeBoundList { | ||
2004 | pub(crate) syntax: SyntaxNode, | ||
2005 | } | ||
2006 | impl AstNode for TypeBoundList { | ||
2007 | fn can_cast(kind: SyntaxKind) -> bool { kind == TYPE_BOUND_LIST } | ||
2008 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2009 | if Self::can_cast(syntax.kind()) { | ||
2010 | Some(Self { syntax }) | ||
2011 | } else { | ||
2012 | None | ||
2013 | } | ||
2014 | } | ||
2015 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2016 | } | ||
2017 | impl TypeBoundList { | ||
2018 | pub fn bounds(&self) -> AstChildren<TypeBound> { support::children(&self.syntax) } | ||
2019 | } | ||
2020 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2021 | pub struct WherePred { | ||
2022 | pub(crate) syntax: SyntaxNode, | ||
2023 | } | ||
2024 | impl AstNode for WherePred { | ||
2025 | fn can_cast(kind: SyntaxKind) -> bool { kind == WHERE_PRED } | ||
2026 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2027 | if Self::can_cast(syntax.kind()) { | ||
2028 | Some(Self { syntax }) | ||
2029 | } else { | ||
2030 | None | ||
2031 | } | ||
2032 | } | ||
2033 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2034 | } | ||
2035 | impl ast::TypeBoundsOwner for WherePred {} | ||
2036 | impl WherePred { | ||
2037 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } | ||
2038 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | ||
2039 | } | ||
2040 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2041 | pub struct WhereClause { | ||
2042 | pub(crate) syntax: SyntaxNode, | ||
2043 | } | ||
2044 | impl AstNode for WhereClause { | ||
2045 | fn can_cast(kind: SyntaxKind) -> bool { kind == WHERE_CLAUSE } | ||
2046 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2047 | if Self::can_cast(syntax.kind()) { | ||
2048 | Some(Self { syntax }) | ||
2049 | } else { | ||
2050 | None | ||
2051 | } | ||
2052 | } | ||
2053 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2054 | } | ||
2055 | impl WhereClause { | ||
2056 | pub fn where_kw_token(&self) -> Option<WhereKw> { support::token(&self.syntax) } | ||
2057 | pub fn predicates(&self) -> AstChildren<WherePred> { support::children(&self.syntax) } | ||
2058 | } | ||
2059 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2060 | pub struct Abi { | ||
2061 | pub(crate) syntax: SyntaxNode, | ||
2062 | } | ||
2063 | impl AstNode for Abi { | ||
2064 | fn can_cast(kind: SyntaxKind) -> bool { kind == ABI } | ||
2065 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2066 | if Self::can_cast(syntax.kind()) { | ||
2067 | Some(Self { syntax }) | ||
2068 | } else { | ||
2069 | None | ||
2070 | } | ||
2071 | } | ||
2072 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2073 | } | ||
2074 | impl Abi { | ||
2075 | pub fn string_token(&self) -> Option<String> { support::token(&self.syntax) } | ||
2076 | } | ||
2077 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2078 | pub struct ExprStmt { | ||
2079 | pub(crate) syntax: SyntaxNode, | ||
2080 | } | ||
2081 | impl AstNode for ExprStmt { | ||
2082 | fn can_cast(kind: SyntaxKind) -> bool { kind == EXPR_STMT } | ||
2083 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2084 | if Self::can_cast(syntax.kind()) { | ||
2085 | Some(Self { syntax }) | ||
2086 | } else { | ||
2087 | None | ||
2088 | } | ||
2089 | } | ||
2090 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2091 | } | ||
2092 | impl ast::AttrsOwner for ExprStmt {} | ||
2093 | impl ExprStmt { | ||
2094 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
2095 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } | ||
2096 | } | ||
2097 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2098 | pub struct LetStmt { | ||
2099 | pub(crate) syntax: SyntaxNode, | ||
2100 | } | ||
2101 | impl AstNode for LetStmt { | ||
2102 | fn can_cast(kind: SyntaxKind) -> bool { kind == LET_STMT } | ||
2103 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2104 | if Self::can_cast(syntax.kind()) { | ||
2105 | Some(Self { syntax }) | ||
2106 | } else { | ||
2107 | None | ||
2108 | } | ||
2109 | } | ||
2110 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2111 | } | ||
2112 | impl ast::AttrsOwner for LetStmt {} | ||
2113 | impl ast::TypeAscriptionOwner for LetStmt {} | ||
2114 | impl LetStmt { | ||
2115 | pub fn let_kw_token(&self) -> Option<LetKw> { support::token(&self.syntax) } | ||
2116 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | ||
2117 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } | ||
2118 | pub fn initializer(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
2119 | pub fn semi_token(&self) -> Option<Semi> { support::token(&self.syntax) } | ||
2120 | } | ||
2121 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2122 | pub struct Condition { | ||
2123 | pub(crate) syntax: SyntaxNode, | ||
2124 | } | ||
2125 | impl AstNode for Condition { | ||
2126 | fn can_cast(kind: SyntaxKind) -> bool { kind == CONDITION } | ||
2127 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2128 | if Self::can_cast(syntax.kind()) { | ||
2129 | Some(Self { syntax }) | ||
2130 | } else { | ||
2131 | None | ||
2132 | } | ||
2133 | } | ||
2134 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2135 | } | ||
2136 | impl Condition { | ||
2137 | pub fn let_kw_token(&self) -> Option<LetKw> { support::token(&self.syntax) } | ||
2138 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | ||
2139 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } | ||
2140 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
2141 | } | ||
2142 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2143 | pub struct Block { | ||
2144 | pub(crate) syntax: SyntaxNode, | ||
2145 | } | ||
2146 | impl AstNode for Block { | ||
2147 | fn can_cast(kind: SyntaxKind) -> bool { kind == BLOCK } | ||
2148 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2149 | if Self::can_cast(syntax.kind()) { | ||
2150 | Some(Self { syntax }) | ||
2151 | } else { | ||
2152 | None | ||
2153 | } | ||
2154 | } | ||
2155 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2156 | } | ||
2157 | impl ast::AttrsOwner for Block {} | ||
2158 | impl ast::ModuleItemOwner for Block {} | ||
2159 | impl Block { | ||
2160 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } | ||
2161 | pub fn statements(&self) -> AstChildren<Stmt> { support::children(&self.syntax) } | ||
2162 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
2163 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } | ||
2164 | } | ||
2165 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2166 | pub struct ParamList { | ||
2167 | pub(crate) syntax: SyntaxNode, | ||
2168 | } | ||
2169 | impl AstNode for ParamList { | ||
2170 | fn can_cast(kind: SyntaxKind) -> bool { kind == PARAM_LIST } | ||
2171 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2172 | if Self::can_cast(syntax.kind()) { | ||
2173 | Some(Self { syntax }) | ||
2174 | } else { | ||
2175 | None | ||
2176 | } | ||
2177 | } | ||
2178 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2179 | } | ||
2180 | impl ParamList { | ||
2181 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } | ||
2182 | pub fn self_param(&self) -> Option<SelfParam> { support::child(&self.syntax) } | ||
2183 | pub fn params(&self) -> AstChildren<Param> { support::children(&self.syntax) } | ||
2184 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } | ||
2185 | } | ||
2186 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2187 | pub struct SelfParam { | ||
2188 | pub(crate) syntax: SyntaxNode, | ||
2189 | } | ||
2190 | impl AstNode for SelfParam { | ||
2191 | fn can_cast(kind: SyntaxKind) -> bool { kind == SELF_PARAM } | ||
2192 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2193 | if Self::can_cast(syntax.kind()) { | ||
2194 | Some(Self { syntax }) | ||
2195 | } else { | ||
2196 | None | ||
2197 | } | ||
2198 | } | ||
2199 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2200 | } | ||
2201 | impl ast::TypeAscriptionOwner for SelfParam {} | ||
2202 | impl ast::AttrsOwner for SelfParam {} | ||
2203 | impl SelfParam { | ||
2204 | pub fn amp_token(&self) -> Option<Amp> { support::token(&self.syntax) } | ||
2205 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } | ||
2206 | pub fn self_kw_token(&self) -> Option<SelfKw> { support::token(&self.syntax) } | ||
2207 | } | ||
2208 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2209 | pub struct Param { | ||
2210 | pub(crate) syntax: SyntaxNode, | ||
2211 | } | ||
2212 | impl AstNode for Param { | ||
2213 | fn can_cast(kind: SyntaxKind) -> bool { kind == PARAM } | ||
2214 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2215 | if Self::can_cast(syntax.kind()) { | ||
2216 | Some(Self { syntax }) | ||
2217 | } else { | ||
2218 | None | ||
2219 | } | ||
2220 | } | ||
2221 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2222 | } | ||
2223 | impl ast::TypeAscriptionOwner for Param {} | ||
2224 | impl ast::AttrsOwner for Param {} | ||
2225 | impl Param { | ||
2226 | pub fn pat(&self) -> Option<Pat> { support::child(&self.syntax) } | ||
2227 | pub fn dotdotdot_token(&self) -> Option<Dotdotdot> { support::token(&self.syntax) } | ||
2228 | } | ||
2229 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2230 | pub struct UseItem { | ||
2231 | pub(crate) syntax: SyntaxNode, | ||
2232 | } | ||
2233 | impl AstNode for UseItem { | ||
2234 | fn can_cast(kind: SyntaxKind) -> bool { kind == USE_ITEM } | ||
2235 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2236 | if Self::can_cast(syntax.kind()) { | ||
2237 | Some(Self { syntax }) | ||
2238 | } else { | ||
2239 | None | ||
2240 | } | ||
2241 | } | ||
2242 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2243 | } | ||
2244 | impl ast::AttrsOwner for UseItem {} | ||
2245 | impl ast::VisibilityOwner for UseItem {} | ||
2246 | impl UseItem { | ||
2247 | pub fn use_kw_token(&self) -> Option<UseKw> { support::token(&self.syntax) } | ||
2248 | pub fn use_tree(&self) -> Option<UseTree> { support::child(&self.syntax) } | ||
2249 | } | ||
2250 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2251 | pub struct UseTree { | ||
2252 | pub(crate) syntax: SyntaxNode, | ||
2253 | } | ||
2254 | impl AstNode for UseTree { | ||
2255 | fn can_cast(kind: SyntaxKind) -> bool { kind == USE_TREE } | ||
2256 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2257 | if Self::can_cast(syntax.kind()) { | ||
2258 | Some(Self { syntax }) | ||
2259 | } else { | ||
2260 | None | ||
2261 | } | ||
2262 | } | ||
2263 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2264 | } | ||
2265 | impl UseTree { | ||
2266 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | ||
2267 | pub fn star_token(&self) -> Option<Star> { support::token(&self.syntax) } | ||
2268 | pub fn use_tree_list(&self) -> Option<UseTreeList> { support::child(&self.syntax) } | ||
2269 | pub fn alias(&self) -> Option<Alias> { support::child(&self.syntax) } | ||
2270 | } | ||
2271 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2272 | pub struct Alias { | ||
2273 | pub(crate) syntax: SyntaxNode, | ||
2274 | } | ||
2275 | impl AstNode for Alias { | ||
2276 | fn can_cast(kind: SyntaxKind) -> bool { kind == ALIAS } | ||
2277 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2278 | if Self::can_cast(syntax.kind()) { | ||
2279 | Some(Self { syntax }) | ||
2280 | } else { | ||
2281 | None | ||
2282 | } | ||
2283 | } | ||
2284 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2285 | } | ||
2286 | impl ast::NameOwner for Alias {} | ||
2287 | impl Alias { | ||
2288 | pub fn as_kw_token(&self) -> Option<AsKw> { support::token(&self.syntax) } | ||
2289 | } | ||
2290 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2291 | pub struct UseTreeList { | ||
2292 | pub(crate) syntax: SyntaxNode, | ||
2293 | } | ||
2294 | impl AstNode for UseTreeList { | ||
2295 | fn can_cast(kind: SyntaxKind) -> bool { kind == USE_TREE_LIST } | ||
2296 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2297 | if Self::can_cast(syntax.kind()) { | ||
2298 | Some(Self { syntax }) | ||
2299 | } else { | ||
2300 | None | ||
2301 | } | ||
2302 | } | ||
2303 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2304 | } | ||
2305 | impl UseTreeList { | ||
2306 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } | ||
2307 | pub fn use_trees(&self) -> AstChildren<UseTree> { support::children(&self.syntax) } | ||
2308 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } | ||
2309 | } | ||
2310 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2311 | pub struct ExternCrateItem { | ||
2312 | pub(crate) syntax: SyntaxNode, | ||
2313 | } | ||
2314 | impl AstNode for ExternCrateItem { | ||
2315 | fn can_cast(kind: SyntaxKind) -> bool { kind == EXTERN_CRATE_ITEM } | ||
2316 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2317 | if Self::can_cast(syntax.kind()) { | ||
2318 | Some(Self { syntax }) | ||
2319 | } else { | ||
2320 | None | ||
2321 | } | ||
2322 | } | ||
2323 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2324 | } | ||
2325 | impl ast::AttrsOwner for ExternCrateItem {} | ||
2326 | impl ast::VisibilityOwner for ExternCrateItem {} | ||
2327 | impl ExternCrateItem { | ||
2328 | pub fn extern_kw_token(&self) -> Option<ExternKw> { support::token(&self.syntax) } | ||
2329 | pub fn crate_kw_token(&self) -> Option<CrateKw> { support::token(&self.syntax) } | ||
2330 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } | ||
2331 | pub fn alias(&self) -> Option<Alias> { support::child(&self.syntax) } | ||
2332 | } | ||
2333 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2334 | pub struct ArgList { | ||
2335 | pub(crate) syntax: SyntaxNode, | ||
2336 | } | ||
2337 | impl AstNode for ArgList { | ||
2338 | fn can_cast(kind: SyntaxKind) -> bool { kind == ARG_LIST } | ||
2339 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2340 | if Self::can_cast(syntax.kind()) { | ||
2341 | Some(Self { syntax }) | ||
2342 | } else { | ||
2343 | None | ||
2344 | } | ||
2345 | } | ||
2346 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2347 | } | ||
2348 | impl ArgList { | ||
2349 | pub fn l_paren_token(&self) -> Option<LParen> { support::token(&self.syntax) } | ||
2350 | pub fn args(&self) -> AstChildren<Expr> { support::children(&self.syntax) } | ||
2351 | pub fn r_paren_token(&self) -> Option<RParen> { support::token(&self.syntax) } | ||
2352 | } | ||
2353 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2354 | pub struct Path { | ||
2355 | pub(crate) syntax: SyntaxNode, | ||
2356 | } | ||
2357 | impl AstNode for Path { | ||
2358 | fn can_cast(kind: SyntaxKind) -> bool { kind == PATH } | ||
2359 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2360 | if Self::can_cast(syntax.kind()) { | ||
2361 | Some(Self { syntax }) | ||
2362 | } else { | ||
2363 | None | ||
2364 | } | ||
2365 | } | ||
2366 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2367 | } | ||
2368 | impl Path { | ||
2369 | pub fn segment(&self) -> Option<PathSegment> { support::child(&self.syntax) } | ||
2370 | pub fn qualifier(&self) -> Option<Path> { support::child(&self.syntax) } | ||
2371 | } | ||
2372 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2373 | pub struct PathSegment { | ||
2374 | pub(crate) syntax: SyntaxNode, | ||
2375 | } | ||
2376 | impl AstNode for PathSegment { | ||
2377 | fn can_cast(kind: SyntaxKind) -> bool { kind == PATH_SEGMENT } | ||
2378 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2379 | if Self::can_cast(syntax.kind()) { | ||
2380 | Some(Self { syntax }) | ||
2381 | } else { | ||
2382 | None | ||
2383 | } | ||
2384 | } | ||
2385 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2386 | } | ||
2387 | impl PathSegment { | ||
2388 | pub fn coloncolon_token(&self) -> Option<Coloncolon> { support::token(&self.syntax) } | ||
2389 | pub fn l_angle_token(&self) -> Option<LAngle> { support::token(&self.syntax) } | ||
2390 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } | ||
2391 | pub fn type_arg_list(&self) -> Option<TypeArgList> { support::child(&self.syntax) } | ||
2392 | pub fn param_list(&self) -> Option<ParamList> { support::child(&self.syntax) } | ||
2393 | pub fn ret_type(&self) -> Option<RetType> { support::child(&self.syntax) } | ||
2394 | pub fn path_type(&self) -> Option<PathType> { support::child(&self.syntax) } | ||
2395 | pub fn r_angle_token(&self) -> Option<RAngle> { support::token(&self.syntax) } | ||
2396 | } | ||
2397 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2398 | pub struct TypeArgList { | ||
2399 | pub(crate) syntax: SyntaxNode, | ||
2400 | } | ||
2401 | impl AstNode for TypeArgList { | ||
2402 | fn can_cast(kind: SyntaxKind) -> bool { kind == TYPE_ARG_LIST } | ||
2403 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2404 | if Self::can_cast(syntax.kind()) { | ||
2405 | Some(Self { syntax }) | ||
2406 | } else { | ||
2407 | None | ||
2408 | } | ||
2409 | } | ||
2410 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2411 | } | ||
2412 | impl TypeArgList { | ||
2413 | pub fn coloncolon_token(&self) -> Option<Coloncolon> { support::token(&self.syntax) } | ||
2414 | pub fn l_angle_token(&self) -> Option<LAngle> { support::token(&self.syntax) } | ||
2415 | pub fn generic_args(&self) -> AstChildren<GenericArg> { support::children(&self.syntax) } | ||
2416 | pub fn type_args(&self) -> AstChildren<TypeArg> { support::children(&self.syntax) } | ||
2417 | pub fn lifetime_args(&self) -> AstChildren<LifetimeArg> { support::children(&self.syntax) } | ||
2418 | pub fn assoc_type_args(&self) -> AstChildren<AssocTypeArg> { support::children(&self.syntax) } | ||
2419 | pub fn const_args(&self) -> AstChildren<ConstArg> { support::children(&self.syntax) } | ||
2420 | pub fn r_angle_token(&self) -> Option<RAngle> { support::token(&self.syntax) } | ||
2421 | } | ||
2422 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2423 | pub struct TypeArg { | ||
2424 | pub(crate) syntax: SyntaxNode, | ||
2425 | } | ||
2426 | impl AstNode for TypeArg { | ||
2427 | fn can_cast(kind: SyntaxKind) -> bool { kind == TYPE_ARG } | ||
2428 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2429 | if Self::can_cast(syntax.kind()) { | ||
2430 | Some(Self { syntax }) | ||
2431 | } else { | ||
2432 | None | ||
2433 | } | ||
2434 | } | ||
2435 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2436 | } | ||
2437 | impl TypeArg { | ||
2438 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | ||
2439 | } | ||
2440 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2441 | pub struct AssocTypeArg { | ||
2442 | pub(crate) syntax: SyntaxNode, | ||
2443 | } | ||
2444 | impl AstNode for AssocTypeArg { | ||
2445 | fn can_cast(kind: SyntaxKind) -> bool { kind == ASSOC_TYPE_ARG } | ||
2446 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2447 | if Self::can_cast(syntax.kind()) { | ||
2448 | Some(Self { syntax }) | ||
2449 | } else { | ||
2450 | None | ||
2451 | } | ||
2452 | } | ||
2453 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2454 | } | ||
2455 | impl ast::TypeBoundsOwner for AssocTypeArg {} | ||
2456 | impl AssocTypeArg { | ||
2457 | pub fn name_ref(&self) -> Option<NameRef> { support::child(&self.syntax) } | ||
2458 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } | ||
2459 | pub fn type_ref(&self) -> Option<TypeRef> { support::child(&self.syntax) } | ||
2460 | } | ||
2461 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2462 | pub struct LifetimeArg { | ||
2463 | pub(crate) syntax: SyntaxNode, | ||
2464 | } | ||
2465 | impl AstNode for LifetimeArg { | ||
2466 | fn can_cast(kind: SyntaxKind) -> bool { kind == LIFETIME_ARG } | ||
2467 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2468 | if Self::can_cast(syntax.kind()) { | ||
2469 | Some(Self { syntax }) | ||
2470 | } else { | ||
2471 | None | ||
2472 | } | ||
2473 | } | ||
2474 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2475 | } | ||
2476 | impl LifetimeArg { | ||
2477 | pub fn lifetime_token(&self) -> Option<Lifetime> { support::token(&self.syntax) } | ||
2478 | } | ||
2479 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2480 | pub struct ConstArg { | ||
2481 | pub(crate) syntax: SyntaxNode, | ||
2482 | } | ||
2483 | impl AstNode for ConstArg { | ||
2484 | fn can_cast(kind: SyntaxKind) -> bool { kind == CONST_ARG } | ||
2485 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2486 | if Self::can_cast(syntax.kind()) { | ||
2487 | Some(Self { syntax }) | ||
2488 | } else { | ||
2489 | None | ||
2490 | } | ||
2491 | } | ||
2492 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2493 | } | ||
2494 | impl ConstArg { | ||
2495 | pub fn literal(&self) -> Option<Literal> { support::child(&self.syntax) } | ||
2496 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } | ||
2497 | pub fn block_expr(&self) -> Option<BlockExpr> { support::child(&self.syntax) } | ||
2498 | } | ||
2499 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2500 | pub struct MacroItems { | ||
2501 | pub(crate) syntax: SyntaxNode, | ||
2502 | } | ||
2503 | impl AstNode for MacroItems { | ||
2504 | fn can_cast(kind: SyntaxKind) -> bool { kind == MACRO_ITEMS } | ||
2505 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2506 | if Self::can_cast(syntax.kind()) { | ||
2507 | Some(Self { syntax }) | ||
2508 | } else { | ||
2509 | None | ||
2510 | } | ||
2511 | } | ||
2512 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2513 | } | ||
2514 | impl ast::ModuleItemOwner for MacroItems {} | ||
2515 | impl ast::FnDefOwner for MacroItems {} | ||
2516 | impl MacroItems {} | ||
2517 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2518 | pub struct MacroStmts { | ||
2519 | pub(crate) syntax: SyntaxNode, | ||
2520 | } | ||
2521 | impl AstNode for MacroStmts { | ||
2522 | fn can_cast(kind: SyntaxKind) -> bool { kind == MACRO_STMTS } | ||
2523 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2524 | if Self::can_cast(syntax.kind()) { | ||
2525 | Some(Self { syntax }) | ||
2526 | } else { | ||
2527 | None | ||
2528 | } | ||
2529 | } | ||
2530 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2531 | } | ||
2532 | impl MacroStmts { | ||
2533 | pub fn statements(&self) -> AstChildren<Stmt> { support::children(&self.syntax) } | ||
2534 | pub fn expr(&self) -> Option<Expr> { support::child(&self.syntax) } | ||
2535 | } | ||
2536 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2537 | pub struct ExternItemList { | ||
2538 | pub(crate) syntax: SyntaxNode, | ||
2539 | } | ||
2540 | impl AstNode for ExternItemList { | ||
2541 | fn can_cast(kind: SyntaxKind) -> bool { kind == EXTERN_ITEM_LIST } | ||
2542 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2543 | if Self::can_cast(syntax.kind()) { | ||
2544 | Some(Self { syntax }) | ||
2545 | } else { | ||
2546 | None | ||
2547 | } | ||
2548 | } | ||
2549 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2550 | } | ||
2551 | impl ast::FnDefOwner for ExternItemList {} | ||
2552 | impl ast::ModuleItemOwner for ExternItemList {} | ||
2553 | impl ExternItemList { | ||
2554 | pub fn l_curly_token(&self) -> Option<LCurly> { support::token(&self.syntax) } | ||
2555 | pub fn extern_items(&self) -> AstChildren<ExternItem> { support::children(&self.syntax) } | ||
2556 | pub fn r_curly_token(&self) -> Option<RCurly> { support::token(&self.syntax) } | ||
2557 | } | ||
2558 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2559 | pub struct ExternBlock { | ||
2560 | pub(crate) syntax: SyntaxNode, | ||
2561 | } | ||
2562 | impl AstNode for ExternBlock { | ||
2563 | fn can_cast(kind: SyntaxKind) -> bool { kind == EXTERN_BLOCK } | ||
2564 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2565 | if Self::can_cast(syntax.kind()) { | ||
2566 | Some(Self { syntax }) | ||
2567 | } else { | ||
2568 | None | ||
2569 | } | ||
2570 | } | ||
2571 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2572 | } | ||
2573 | impl ExternBlock { | ||
2574 | pub fn abi(&self) -> Option<Abi> { support::child(&self.syntax) } | ||
2575 | pub fn extern_item_list(&self) -> Option<ExternItemList> { support::child(&self.syntax) } | ||
2576 | } | ||
2577 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2578 | pub struct MetaItem { | ||
2579 | pub(crate) syntax: SyntaxNode, | ||
2580 | } | ||
2581 | impl AstNode for MetaItem { | ||
2582 | fn can_cast(kind: SyntaxKind) -> bool { kind == META_ITEM } | ||
2583 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2584 | if Self::can_cast(syntax.kind()) { | ||
2585 | Some(Self { syntax }) | ||
2586 | } else { | ||
2587 | None | ||
2588 | } | ||
2589 | } | ||
2590 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2591 | } | ||
2592 | impl MetaItem { | ||
2593 | pub fn path(&self) -> Option<Path> { support::child(&self.syntax) } | ||
2594 | pub fn eq_token(&self) -> Option<Eq> { support::token(&self.syntax) } | ||
2595 | pub fn attr_input(&self) -> Option<AttrInput> { support::child(&self.syntax) } | ||
2596 | pub fn nested_meta_items(&self) -> AstChildren<MetaItem> { support::children(&self.syntax) } | ||
2597 | } | ||
2598 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2599 | pub struct MacroDef { | ||
2600 | pub(crate) syntax: SyntaxNode, | ||
2601 | } | ||
2602 | impl AstNode for MacroDef { | ||
2603 | fn can_cast(kind: SyntaxKind) -> bool { kind == MACRO_DEF } | ||
2604 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2605 | if Self::can_cast(syntax.kind()) { | ||
2606 | Some(Self { syntax }) | ||
2607 | } else { | ||
2608 | None | ||
2609 | } | ||
2610 | } | ||
2611 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | ||
2612 | } | ||
2613 | impl MacroDef { | ||
2614 | pub fn name(&self) -> Option<Name> { support::child(&self.syntax) } | ||
2615 | pub fn token_tree(&self) -> Option<TokenTree> { support::child(&self.syntax) } | ||
2616 | } | ||
2617 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2618 | pub enum NominalDef { | ||
2619 | StructDef(StructDef), | ||
2620 | EnumDef(EnumDef), | ||
2621 | UnionDef(UnionDef), | ||
2622 | } | ||
2623 | impl From<StructDef> for NominalDef { | ||
2624 | fn from(node: StructDef) -> NominalDef { NominalDef::StructDef(node) } | ||
2625 | } | ||
2626 | impl From<EnumDef> for NominalDef { | ||
2627 | fn from(node: EnumDef) -> NominalDef { NominalDef::EnumDef(node) } | ||
2628 | } | ||
2629 | impl From<UnionDef> for NominalDef { | ||
2630 | fn from(node: UnionDef) -> NominalDef { NominalDef::UnionDef(node) } | ||
2631 | } | ||
2632 | impl AstNode for NominalDef { | ||
2633 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2634 | match kind { | ||
2635 | STRUCT_DEF | ENUM_DEF | UNION_DEF => true, | ||
2636 | _ => false, | ||
2637 | } | ||
2638 | } | ||
2639 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2640 | let res = match syntax.kind() { | ||
2641 | STRUCT_DEF => NominalDef::StructDef(StructDef { syntax }), | ||
2642 | ENUM_DEF => NominalDef::EnumDef(EnumDef { syntax }), | ||
2643 | UNION_DEF => NominalDef::UnionDef(UnionDef { syntax }), | ||
2644 | _ => return None, | ||
2645 | }; | ||
2646 | Some(res) | ||
2647 | } | ||
2648 | fn syntax(&self) -> &SyntaxNode { | ||
2649 | match self { | ||
2650 | NominalDef::StructDef(it) => &it.syntax, | ||
2651 | NominalDef::EnumDef(it) => &it.syntax, | ||
2652 | NominalDef::UnionDef(it) => &it.syntax, | ||
2653 | } | ||
2654 | } | ||
2655 | } | ||
2656 | impl ast::NameOwner for NominalDef {} | ||
2657 | impl ast::TypeParamsOwner for NominalDef {} | ||
2658 | impl ast::AttrsOwner for NominalDef {} | ||
2659 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2660 | pub enum GenericParam { | ||
2661 | LifetimeParam(LifetimeParam), | ||
2662 | TypeParam(TypeParam), | ||
2663 | ConstParam(ConstParam), | ||
2664 | } | ||
2665 | impl From<LifetimeParam> for GenericParam { | ||
2666 | fn from(node: LifetimeParam) -> GenericParam { GenericParam::LifetimeParam(node) } | ||
2667 | } | ||
2668 | impl From<TypeParam> for GenericParam { | ||
2669 | fn from(node: TypeParam) -> GenericParam { GenericParam::TypeParam(node) } | ||
2670 | } | ||
2671 | impl From<ConstParam> for GenericParam { | ||
2672 | fn from(node: ConstParam) -> GenericParam { GenericParam::ConstParam(node) } | ||
2673 | } | ||
2674 | impl AstNode for GenericParam { | ||
2675 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2676 | match kind { | ||
2677 | LIFETIME_PARAM | TYPE_PARAM | CONST_PARAM => true, | ||
2678 | _ => false, | ||
2679 | } | ||
2680 | } | ||
2681 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2682 | let res = match syntax.kind() { | ||
2683 | LIFETIME_PARAM => GenericParam::LifetimeParam(LifetimeParam { syntax }), | ||
2684 | TYPE_PARAM => GenericParam::TypeParam(TypeParam { syntax }), | ||
2685 | CONST_PARAM => GenericParam::ConstParam(ConstParam { syntax }), | ||
2686 | _ => return None, | ||
2687 | }; | ||
2688 | Some(res) | ||
2689 | } | ||
2690 | fn syntax(&self) -> &SyntaxNode { | ||
2691 | match self { | ||
2692 | GenericParam::LifetimeParam(it) => &it.syntax, | ||
2693 | GenericParam::TypeParam(it) => &it.syntax, | ||
2694 | GenericParam::ConstParam(it) => &it.syntax, | ||
2695 | } | ||
2696 | } | ||
2697 | } | ||
2698 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2699 | pub enum GenericArg { | ||
2700 | LifetimeArg(LifetimeArg), | ||
2701 | TypeArg(TypeArg), | ||
2702 | ConstArg(ConstArg), | ||
2703 | AssocTypeArg(AssocTypeArg), | ||
2704 | } | ||
2705 | impl From<LifetimeArg> for GenericArg { | ||
2706 | fn from(node: LifetimeArg) -> GenericArg { GenericArg::LifetimeArg(node) } | ||
2707 | } | ||
2708 | impl From<TypeArg> for GenericArg { | ||
2709 | fn from(node: TypeArg) -> GenericArg { GenericArg::TypeArg(node) } | ||
2710 | } | ||
2711 | impl From<ConstArg> for GenericArg { | ||
2712 | fn from(node: ConstArg) -> GenericArg { GenericArg::ConstArg(node) } | ||
2713 | } | ||
2714 | impl From<AssocTypeArg> for GenericArg { | ||
2715 | fn from(node: AssocTypeArg) -> GenericArg { GenericArg::AssocTypeArg(node) } | ||
2716 | } | ||
2717 | impl AstNode for GenericArg { | ||
2718 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2719 | match kind { | ||
2720 | LIFETIME_ARG | TYPE_ARG | CONST_ARG | ASSOC_TYPE_ARG => true, | ||
2721 | _ => false, | ||
2722 | } | ||
2723 | } | ||
2724 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2725 | let res = match syntax.kind() { | ||
2726 | LIFETIME_ARG => GenericArg::LifetimeArg(LifetimeArg { syntax }), | ||
2727 | TYPE_ARG => GenericArg::TypeArg(TypeArg { syntax }), | ||
2728 | CONST_ARG => GenericArg::ConstArg(ConstArg { syntax }), | ||
2729 | ASSOC_TYPE_ARG => GenericArg::AssocTypeArg(AssocTypeArg { syntax }), | ||
2730 | _ => return None, | ||
2731 | }; | ||
2732 | Some(res) | ||
2733 | } | ||
2734 | fn syntax(&self) -> &SyntaxNode { | ||
2735 | match self { | ||
2736 | GenericArg::LifetimeArg(it) => &it.syntax, | ||
2737 | GenericArg::TypeArg(it) => &it.syntax, | ||
2738 | GenericArg::ConstArg(it) => &it.syntax, | ||
2739 | GenericArg::AssocTypeArg(it) => &it.syntax, | ||
2740 | } | ||
2741 | } | ||
2742 | } | ||
2743 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2744 | pub enum TypeRef { | ||
2745 | ParenType(ParenType), | ||
2746 | TupleType(TupleType), | ||
2747 | NeverType(NeverType), | ||
2748 | PathType(PathType), | ||
2749 | PointerType(PointerType), | ||
2750 | ArrayType(ArrayType), | ||
2751 | SliceType(SliceType), | ||
2752 | ReferenceType(ReferenceType), | ||
2753 | PlaceholderType(PlaceholderType), | ||
2754 | FnPointerType(FnPointerType), | ||
2755 | ForType(ForType), | ||
2756 | ImplTraitType(ImplTraitType), | ||
2757 | DynTraitType(DynTraitType), | ||
2758 | } | ||
2759 | impl From<ParenType> for TypeRef { | ||
2760 | fn from(node: ParenType) -> TypeRef { TypeRef::ParenType(node) } | ||
2761 | } | ||
2762 | impl From<TupleType> for TypeRef { | ||
2763 | fn from(node: TupleType) -> TypeRef { TypeRef::TupleType(node) } | ||
2764 | } | ||
2765 | impl From<NeverType> for TypeRef { | ||
2766 | fn from(node: NeverType) -> TypeRef { TypeRef::NeverType(node) } | ||
2767 | } | ||
2768 | impl From<PathType> for TypeRef { | ||
2769 | fn from(node: PathType) -> TypeRef { TypeRef::PathType(node) } | ||
2770 | } | ||
2771 | impl From<PointerType> for TypeRef { | ||
2772 | fn from(node: PointerType) -> TypeRef { TypeRef::PointerType(node) } | ||
2773 | } | ||
2774 | impl From<ArrayType> for TypeRef { | ||
2775 | fn from(node: ArrayType) -> TypeRef { TypeRef::ArrayType(node) } | ||
2776 | } | ||
2777 | impl From<SliceType> for TypeRef { | ||
2778 | fn from(node: SliceType) -> TypeRef { TypeRef::SliceType(node) } | ||
2779 | } | ||
2780 | impl From<ReferenceType> for TypeRef { | ||
2781 | fn from(node: ReferenceType) -> TypeRef { TypeRef::ReferenceType(node) } | ||
2782 | } | ||
2783 | impl From<PlaceholderType> for TypeRef { | ||
2784 | fn from(node: PlaceholderType) -> TypeRef { TypeRef::PlaceholderType(node) } | ||
2785 | } | ||
2786 | impl From<FnPointerType> for TypeRef { | ||
2787 | fn from(node: FnPointerType) -> TypeRef { TypeRef::FnPointerType(node) } | ||
2788 | } | ||
2789 | impl From<ForType> for TypeRef { | ||
2790 | fn from(node: ForType) -> TypeRef { TypeRef::ForType(node) } | ||
2791 | } | ||
2792 | impl From<ImplTraitType> for TypeRef { | ||
2793 | fn from(node: ImplTraitType) -> TypeRef { TypeRef::ImplTraitType(node) } | ||
2794 | } | ||
2795 | impl From<DynTraitType> for TypeRef { | ||
2796 | fn from(node: DynTraitType) -> TypeRef { TypeRef::DynTraitType(node) } | ||
2797 | } | ||
2798 | impl AstNode for TypeRef { | ||
2799 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2800 | match kind { | ||
2801 | PAREN_TYPE | TUPLE_TYPE | NEVER_TYPE | PATH_TYPE | POINTER_TYPE | ARRAY_TYPE | ||
2802 | | SLICE_TYPE | REFERENCE_TYPE | PLACEHOLDER_TYPE | FN_POINTER_TYPE | FOR_TYPE | ||
2803 | | IMPL_TRAIT_TYPE | DYN_TRAIT_TYPE => true, | ||
2804 | _ => false, | ||
2805 | } | ||
2806 | } | ||
2807 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2808 | let res = match syntax.kind() { | ||
2809 | PAREN_TYPE => TypeRef::ParenType(ParenType { syntax }), | ||
2810 | TUPLE_TYPE => TypeRef::TupleType(TupleType { syntax }), | ||
2811 | NEVER_TYPE => TypeRef::NeverType(NeverType { syntax }), | ||
2812 | PATH_TYPE => TypeRef::PathType(PathType { syntax }), | ||
2813 | POINTER_TYPE => TypeRef::PointerType(PointerType { syntax }), | ||
2814 | ARRAY_TYPE => TypeRef::ArrayType(ArrayType { syntax }), | ||
2815 | SLICE_TYPE => TypeRef::SliceType(SliceType { syntax }), | ||
2816 | REFERENCE_TYPE => TypeRef::ReferenceType(ReferenceType { syntax }), | ||
2817 | PLACEHOLDER_TYPE => TypeRef::PlaceholderType(PlaceholderType { syntax }), | ||
2818 | FN_POINTER_TYPE => TypeRef::FnPointerType(FnPointerType { syntax }), | ||
2819 | FOR_TYPE => TypeRef::ForType(ForType { syntax }), | ||
2820 | IMPL_TRAIT_TYPE => TypeRef::ImplTraitType(ImplTraitType { syntax }), | ||
2821 | DYN_TRAIT_TYPE => TypeRef::DynTraitType(DynTraitType { syntax }), | ||
2822 | _ => return None, | ||
2823 | }; | ||
2824 | Some(res) | ||
2825 | } | ||
2826 | fn syntax(&self) -> &SyntaxNode { | ||
2827 | match self { | ||
2828 | TypeRef::ParenType(it) => &it.syntax, | ||
2829 | TypeRef::TupleType(it) => &it.syntax, | ||
2830 | TypeRef::NeverType(it) => &it.syntax, | ||
2831 | TypeRef::PathType(it) => &it.syntax, | ||
2832 | TypeRef::PointerType(it) => &it.syntax, | ||
2833 | TypeRef::ArrayType(it) => &it.syntax, | ||
2834 | TypeRef::SliceType(it) => &it.syntax, | ||
2835 | TypeRef::ReferenceType(it) => &it.syntax, | ||
2836 | TypeRef::PlaceholderType(it) => &it.syntax, | ||
2837 | TypeRef::FnPointerType(it) => &it.syntax, | ||
2838 | TypeRef::ForType(it) => &it.syntax, | ||
2839 | TypeRef::ImplTraitType(it) => &it.syntax, | ||
2840 | TypeRef::DynTraitType(it) => &it.syntax, | ||
2841 | } | ||
2842 | } | ||
2843 | } | ||
2844 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2845 | pub enum ModuleItem { | ||
2846 | StructDef(StructDef), | ||
2847 | UnionDef(UnionDef), | ||
2848 | EnumDef(EnumDef), | ||
2849 | FnDef(FnDef), | ||
2850 | TraitDef(TraitDef), | ||
2851 | TypeAliasDef(TypeAliasDef), | ||
2852 | ImplDef(ImplDef), | ||
2853 | UseItem(UseItem), | ||
2854 | ExternCrateItem(ExternCrateItem), | ||
2855 | ConstDef(ConstDef), | ||
2856 | StaticDef(StaticDef), | ||
2857 | Module(Module), | ||
2858 | MacroCall(MacroCall), | ||
2859 | ExternBlock(ExternBlock), | ||
2860 | } | ||
2861 | impl From<StructDef> for ModuleItem { | ||
2862 | fn from(node: StructDef) -> ModuleItem { ModuleItem::StructDef(node) } | ||
2863 | } | ||
2864 | impl From<UnionDef> for ModuleItem { | ||
2865 | fn from(node: UnionDef) -> ModuleItem { ModuleItem::UnionDef(node) } | ||
2866 | } | ||
2867 | impl From<EnumDef> for ModuleItem { | ||
2868 | fn from(node: EnumDef) -> ModuleItem { ModuleItem::EnumDef(node) } | ||
2869 | } | ||
2870 | impl From<FnDef> for ModuleItem { | ||
2871 | fn from(node: FnDef) -> ModuleItem { ModuleItem::FnDef(node) } | ||
2872 | } | ||
2873 | impl From<TraitDef> for ModuleItem { | ||
2874 | fn from(node: TraitDef) -> ModuleItem { ModuleItem::TraitDef(node) } | ||
2875 | } | ||
2876 | impl From<TypeAliasDef> for ModuleItem { | ||
2877 | fn from(node: TypeAliasDef) -> ModuleItem { ModuleItem::TypeAliasDef(node) } | ||
2878 | } | ||
2879 | impl From<ImplDef> for ModuleItem { | ||
2880 | fn from(node: ImplDef) -> ModuleItem { ModuleItem::ImplDef(node) } | ||
2881 | } | ||
2882 | impl From<UseItem> for ModuleItem { | ||
2883 | fn from(node: UseItem) -> ModuleItem { ModuleItem::UseItem(node) } | ||
2884 | } | ||
2885 | impl From<ExternCrateItem> for ModuleItem { | ||
2886 | fn from(node: ExternCrateItem) -> ModuleItem { ModuleItem::ExternCrateItem(node) } | ||
2887 | } | ||
2888 | impl From<ConstDef> for ModuleItem { | ||
2889 | fn from(node: ConstDef) -> ModuleItem { ModuleItem::ConstDef(node) } | ||
2890 | } | ||
2891 | impl From<StaticDef> for ModuleItem { | ||
2892 | fn from(node: StaticDef) -> ModuleItem { ModuleItem::StaticDef(node) } | ||
2893 | } | ||
2894 | impl From<Module> for ModuleItem { | ||
2895 | fn from(node: Module) -> ModuleItem { ModuleItem::Module(node) } | ||
2896 | } | ||
2897 | impl From<MacroCall> for ModuleItem { | ||
2898 | fn from(node: MacroCall) -> ModuleItem { ModuleItem::MacroCall(node) } | ||
2899 | } | ||
2900 | impl From<ExternBlock> for ModuleItem { | ||
2901 | fn from(node: ExternBlock) -> ModuleItem { ModuleItem::ExternBlock(node) } | ||
2902 | } | ||
2903 | impl AstNode for ModuleItem { | ||
2904 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2905 | match kind { | ||
2906 | STRUCT_DEF | UNION_DEF | ENUM_DEF | FN_DEF | TRAIT_DEF | TYPE_ALIAS_DEF | IMPL_DEF | ||
2907 | | USE_ITEM | EXTERN_CRATE_ITEM | CONST_DEF | STATIC_DEF | MODULE | MACRO_CALL | ||
2908 | | EXTERN_BLOCK => true, | ||
2909 | _ => false, | ||
2910 | } | ||
2911 | } | ||
2912 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2913 | let res = match syntax.kind() { | ||
2914 | STRUCT_DEF => ModuleItem::StructDef(StructDef { syntax }), | ||
2915 | UNION_DEF => ModuleItem::UnionDef(UnionDef { syntax }), | ||
2916 | ENUM_DEF => ModuleItem::EnumDef(EnumDef { syntax }), | ||
2917 | FN_DEF => ModuleItem::FnDef(FnDef { syntax }), | ||
2918 | TRAIT_DEF => ModuleItem::TraitDef(TraitDef { syntax }), | ||
2919 | TYPE_ALIAS_DEF => ModuleItem::TypeAliasDef(TypeAliasDef { syntax }), | ||
2920 | IMPL_DEF => ModuleItem::ImplDef(ImplDef { syntax }), | ||
2921 | USE_ITEM => ModuleItem::UseItem(UseItem { syntax }), | ||
2922 | EXTERN_CRATE_ITEM => ModuleItem::ExternCrateItem(ExternCrateItem { syntax }), | ||
2923 | CONST_DEF => ModuleItem::ConstDef(ConstDef { syntax }), | ||
2924 | STATIC_DEF => ModuleItem::StaticDef(StaticDef { syntax }), | ||
2925 | MODULE => ModuleItem::Module(Module { syntax }), | ||
2926 | MACRO_CALL => ModuleItem::MacroCall(MacroCall { syntax }), | ||
2927 | EXTERN_BLOCK => ModuleItem::ExternBlock(ExternBlock { syntax }), | ||
2928 | _ => return None, | ||
2929 | }; | ||
2930 | Some(res) | ||
2931 | } | ||
2932 | fn syntax(&self) -> &SyntaxNode { | ||
2933 | match self { | ||
2934 | ModuleItem::StructDef(it) => &it.syntax, | ||
2935 | ModuleItem::UnionDef(it) => &it.syntax, | ||
2936 | ModuleItem::EnumDef(it) => &it.syntax, | ||
2937 | ModuleItem::FnDef(it) => &it.syntax, | ||
2938 | ModuleItem::TraitDef(it) => &it.syntax, | ||
2939 | ModuleItem::TypeAliasDef(it) => &it.syntax, | ||
2940 | ModuleItem::ImplDef(it) => &it.syntax, | ||
2941 | ModuleItem::UseItem(it) => &it.syntax, | ||
2942 | ModuleItem::ExternCrateItem(it) => &it.syntax, | ||
2943 | ModuleItem::ConstDef(it) => &it.syntax, | ||
2944 | ModuleItem::StaticDef(it) => &it.syntax, | ||
2945 | ModuleItem::Module(it) => &it.syntax, | ||
2946 | ModuleItem::MacroCall(it) => &it.syntax, | ||
2947 | ModuleItem::ExternBlock(it) => &it.syntax, | ||
2948 | } | ||
2949 | } | ||
2950 | } | ||
2951 | impl ast::NameOwner for ModuleItem {} | ||
2952 | impl ast::AttrsOwner for ModuleItem {} | ||
2953 | impl ast::VisibilityOwner for ModuleItem {} | ||
2954 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2955 | pub enum ImplItem { | ||
2956 | FnDef(FnDef), | ||
2957 | TypeAliasDef(TypeAliasDef), | ||
2958 | ConstDef(ConstDef), | ||
2959 | } | ||
2960 | impl From<FnDef> for ImplItem { | ||
2961 | fn from(node: FnDef) -> ImplItem { ImplItem::FnDef(node) } | ||
2962 | } | ||
2963 | impl From<TypeAliasDef> for ImplItem { | ||
2964 | fn from(node: TypeAliasDef) -> ImplItem { ImplItem::TypeAliasDef(node) } | ||
2965 | } | ||
2966 | impl From<ConstDef> for ImplItem { | ||
2967 | fn from(node: ConstDef) -> ImplItem { ImplItem::ConstDef(node) } | ||
2968 | } | ||
2969 | impl AstNode for ImplItem { | ||
2970 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2971 | match kind { | ||
2972 | FN_DEF | TYPE_ALIAS_DEF | CONST_DEF => true, | ||
2973 | _ => false, | ||
2974 | } | ||
2975 | } | ||
2976 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
2977 | let res = match syntax.kind() { | ||
2978 | FN_DEF => ImplItem::FnDef(FnDef { syntax }), | ||
2979 | TYPE_ALIAS_DEF => ImplItem::TypeAliasDef(TypeAliasDef { syntax }), | ||
2980 | CONST_DEF => ImplItem::ConstDef(ConstDef { syntax }), | ||
2981 | _ => return None, | ||
2982 | }; | ||
2983 | Some(res) | ||
2984 | } | ||
2985 | fn syntax(&self) -> &SyntaxNode { | ||
2986 | match self { | ||
2987 | ImplItem::FnDef(it) => &it.syntax, | ||
2988 | ImplItem::TypeAliasDef(it) => &it.syntax, | ||
2989 | ImplItem::ConstDef(it) => &it.syntax, | ||
2990 | } | ||
2991 | } | ||
2992 | } | ||
2993 | impl ast::NameOwner for ImplItem {} | ||
2994 | impl ast::AttrsOwner for ImplItem {} | ||
2995 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2996 | pub enum ExternItem { | ||
2997 | FnDef(FnDef), | ||
2998 | StaticDef(StaticDef), | ||
2999 | } | ||
3000 | impl From<FnDef> for ExternItem { | ||
3001 | fn from(node: FnDef) -> ExternItem { ExternItem::FnDef(node) } | ||
3002 | } | ||
3003 | impl From<StaticDef> for ExternItem { | ||
3004 | fn from(node: StaticDef) -> ExternItem { ExternItem::StaticDef(node) } | ||
3005 | } | ||
3006 | impl AstNode for ExternItem { | ||
3007 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3008 | match kind { | ||
3009 | FN_DEF | STATIC_DEF => true, | ||
3010 | _ => false, | ||
3011 | } | ||
3012 | } | ||
3013 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3014 | let res = match syntax.kind() { | ||
3015 | FN_DEF => ExternItem::FnDef(FnDef { syntax }), | ||
3016 | STATIC_DEF => ExternItem::StaticDef(StaticDef { syntax }), | ||
3017 | _ => return None, | ||
3018 | }; | ||
3019 | Some(res) | ||
3020 | } | ||
3021 | fn syntax(&self) -> &SyntaxNode { | ||
3022 | match self { | ||
3023 | ExternItem::FnDef(it) => &it.syntax, | ||
3024 | ExternItem::StaticDef(it) => &it.syntax, | ||
3025 | } | ||
3026 | } | ||
3027 | } | ||
3028 | impl ast::NameOwner for ExternItem {} | ||
3029 | impl ast::AttrsOwner for ExternItem {} | ||
3030 | impl ast::VisibilityOwner for ExternItem {} | ||
3031 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3032 | pub enum Expr { | ||
3033 | TupleExpr(TupleExpr), | ||
3034 | ArrayExpr(ArrayExpr), | ||
3035 | ParenExpr(ParenExpr), | ||
3036 | PathExpr(PathExpr), | ||
3037 | LambdaExpr(LambdaExpr), | ||
3038 | IfExpr(IfExpr), | ||
3039 | LoopExpr(LoopExpr), | ||
3040 | ForExpr(ForExpr), | ||
3041 | WhileExpr(WhileExpr), | ||
3042 | ContinueExpr(ContinueExpr), | ||
3043 | BreakExpr(BreakExpr), | ||
3044 | Label(Label), | ||
3045 | BlockExpr(BlockExpr), | ||
3046 | ReturnExpr(ReturnExpr), | ||
3047 | MatchExpr(MatchExpr), | ||
3048 | RecordLit(RecordLit), | ||
3049 | CallExpr(CallExpr), | ||
3050 | IndexExpr(IndexExpr), | ||
3051 | MethodCallExpr(MethodCallExpr), | ||
3052 | FieldExpr(FieldExpr), | ||
3053 | AwaitExpr(AwaitExpr), | ||
3054 | TryExpr(TryExpr), | ||
3055 | TryBlockExpr(TryBlockExpr), | ||
3056 | CastExpr(CastExpr), | ||
3057 | RefExpr(RefExpr), | ||
3058 | PrefixExpr(PrefixExpr), | ||
3059 | RangeExpr(RangeExpr), | ||
3060 | BinExpr(BinExpr), | ||
3061 | Literal(Literal), | ||
3062 | MacroCall(MacroCall), | ||
3063 | BoxExpr(BoxExpr), | ||
3064 | } | ||
3065 | impl From<TupleExpr> for Expr { | ||
3066 | fn from(node: TupleExpr) -> Expr { Expr::TupleExpr(node) } | ||
3067 | } | ||
3068 | impl From<ArrayExpr> for Expr { | ||
3069 | fn from(node: ArrayExpr) -> Expr { Expr::ArrayExpr(node) } | ||
3070 | } | ||
3071 | impl From<ParenExpr> for Expr { | ||
3072 | fn from(node: ParenExpr) -> Expr { Expr::ParenExpr(node) } | ||
3073 | } | ||
3074 | impl From<PathExpr> for Expr { | ||
3075 | fn from(node: PathExpr) -> Expr { Expr::PathExpr(node) } | ||
3076 | } | ||
3077 | impl From<LambdaExpr> for Expr { | ||
3078 | fn from(node: LambdaExpr) -> Expr { Expr::LambdaExpr(node) } | ||
3079 | } | ||
3080 | impl From<IfExpr> for Expr { | ||
3081 | fn from(node: IfExpr) -> Expr { Expr::IfExpr(node) } | ||
3082 | } | ||
3083 | impl From<LoopExpr> for Expr { | ||
3084 | fn from(node: LoopExpr) -> Expr { Expr::LoopExpr(node) } | ||
3085 | } | ||
3086 | impl From<ForExpr> for Expr { | ||
3087 | fn from(node: ForExpr) -> Expr { Expr::ForExpr(node) } | ||
3088 | } | ||
3089 | impl From<WhileExpr> for Expr { | ||
3090 | fn from(node: WhileExpr) -> Expr { Expr::WhileExpr(node) } | ||
3091 | } | ||
3092 | impl From<ContinueExpr> for Expr { | ||
3093 | fn from(node: ContinueExpr) -> Expr { Expr::ContinueExpr(node) } | ||
3094 | } | ||
3095 | impl From<BreakExpr> for Expr { | ||
3096 | fn from(node: BreakExpr) -> Expr { Expr::BreakExpr(node) } | ||
3097 | } | ||
3098 | impl From<Label> for Expr { | ||
3099 | fn from(node: Label) -> Expr { Expr::Label(node) } | ||
3100 | } | ||
3101 | impl From<BlockExpr> for Expr { | ||
3102 | fn from(node: BlockExpr) -> Expr { Expr::BlockExpr(node) } | ||
3103 | } | ||
3104 | impl From<ReturnExpr> for Expr { | ||
3105 | fn from(node: ReturnExpr) -> Expr { Expr::ReturnExpr(node) } | ||
3106 | } | ||
3107 | impl From<MatchExpr> for Expr { | ||
3108 | fn from(node: MatchExpr) -> Expr { Expr::MatchExpr(node) } | ||
3109 | } | ||
3110 | impl From<RecordLit> for Expr { | ||
3111 | fn from(node: RecordLit) -> Expr { Expr::RecordLit(node) } | ||
3112 | } | ||
3113 | impl From<CallExpr> for Expr { | ||
3114 | fn from(node: CallExpr) -> Expr { Expr::CallExpr(node) } | ||
3115 | } | ||
3116 | impl From<IndexExpr> for Expr { | ||
3117 | fn from(node: IndexExpr) -> Expr { Expr::IndexExpr(node) } | ||
3118 | } | ||
3119 | impl From<MethodCallExpr> for Expr { | ||
3120 | fn from(node: MethodCallExpr) -> Expr { Expr::MethodCallExpr(node) } | ||
3121 | } | ||
3122 | impl From<FieldExpr> for Expr { | ||
3123 | fn from(node: FieldExpr) -> Expr { Expr::FieldExpr(node) } | ||
3124 | } | ||
3125 | impl From<AwaitExpr> for Expr { | ||
3126 | fn from(node: AwaitExpr) -> Expr { Expr::AwaitExpr(node) } | ||
3127 | } | ||
3128 | impl From<TryExpr> for Expr { | ||
3129 | fn from(node: TryExpr) -> Expr { Expr::TryExpr(node) } | ||
3130 | } | ||
3131 | impl From<TryBlockExpr> for Expr { | ||
3132 | fn from(node: TryBlockExpr) -> Expr { Expr::TryBlockExpr(node) } | ||
3133 | } | ||
3134 | impl From<CastExpr> for Expr { | ||
3135 | fn from(node: CastExpr) -> Expr { Expr::CastExpr(node) } | ||
3136 | } | ||
3137 | impl From<RefExpr> for Expr { | ||
3138 | fn from(node: RefExpr) -> Expr { Expr::RefExpr(node) } | ||
3139 | } | ||
3140 | impl From<PrefixExpr> for Expr { | ||
3141 | fn from(node: PrefixExpr) -> Expr { Expr::PrefixExpr(node) } | ||
3142 | } | ||
3143 | impl From<RangeExpr> for Expr { | ||
3144 | fn from(node: RangeExpr) -> Expr { Expr::RangeExpr(node) } | ||
3145 | } | ||
3146 | impl From<BinExpr> for Expr { | ||
3147 | fn from(node: BinExpr) -> Expr { Expr::BinExpr(node) } | ||
3148 | } | ||
3149 | impl From<Literal> for Expr { | ||
3150 | fn from(node: Literal) -> Expr { Expr::Literal(node) } | ||
3151 | } | ||
3152 | impl From<MacroCall> for Expr { | ||
3153 | fn from(node: MacroCall) -> Expr { Expr::MacroCall(node) } | ||
3154 | } | ||
3155 | impl From<BoxExpr> for Expr { | ||
3156 | fn from(node: BoxExpr) -> Expr { Expr::BoxExpr(node) } | ||
3157 | } | ||
3158 | impl AstNode for Expr { | ||
3159 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3160 | match kind { | ||
3161 | TUPLE_EXPR | ARRAY_EXPR | PAREN_EXPR | PATH_EXPR | LAMBDA_EXPR | IF_EXPR | ||
3162 | | LOOP_EXPR | FOR_EXPR | WHILE_EXPR | CONTINUE_EXPR | BREAK_EXPR | LABEL | ||
3163 | | BLOCK_EXPR | RETURN_EXPR | MATCH_EXPR | RECORD_LIT | CALL_EXPR | INDEX_EXPR | ||
3164 | | METHOD_CALL_EXPR | FIELD_EXPR | AWAIT_EXPR | TRY_EXPR | TRY_BLOCK_EXPR | ||
3165 | | CAST_EXPR | REF_EXPR | PREFIX_EXPR | RANGE_EXPR | BIN_EXPR | LITERAL | MACRO_CALL | ||
3166 | | BOX_EXPR => true, | ||
3167 | _ => false, | ||
3168 | } | ||
3169 | } | ||
3170 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3171 | let res = match syntax.kind() { | ||
3172 | TUPLE_EXPR => Expr::TupleExpr(TupleExpr { syntax }), | ||
3173 | ARRAY_EXPR => Expr::ArrayExpr(ArrayExpr { syntax }), | ||
3174 | PAREN_EXPR => Expr::ParenExpr(ParenExpr { syntax }), | ||
3175 | PATH_EXPR => Expr::PathExpr(PathExpr { syntax }), | ||
3176 | LAMBDA_EXPR => Expr::LambdaExpr(LambdaExpr { syntax }), | ||
3177 | IF_EXPR => Expr::IfExpr(IfExpr { syntax }), | ||
3178 | LOOP_EXPR => Expr::LoopExpr(LoopExpr { syntax }), | ||
3179 | FOR_EXPR => Expr::ForExpr(ForExpr { syntax }), | ||
3180 | WHILE_EXPR => Expr::WhileExpr(WhileExpr { syntax }), | ||
3181 | CONTINUE_EXPR => Expr::ContinueExpr(ContinueExpr { syntax }), | ||
3182 | BREAK_EXPR => Expr::BreakExpr(BreakExpr { syntax }), | ||
3183 | LABEL => Expr::Label(Label { syntax }), | ||
3184 | BLOCK_EXPR => Expr::BlockExpr(BlockExpr { syntax }), | ||
3185 | RETURN_EXPR => Expr::ReturnExpr(ReturnExpr { syntax }), | ||
3186 | MATCH_EXPR => Expr::MatchExpr(MatchExpr { syntax }), | ||
3187 | RECORD_LIT => Expr::RecordLit(RecordLit { syntax }), | ||
3188 | CALL_EXPR => Expr::CallExpr(CallExpr { syntax }), | ||
3189 | INDEX_EXPR => Expr::IndexExpr(IndexExpr { syntax }), | ||
3190 | METHOD_CALL_EXPR => Expr::MethodCallExpr(MethodCallExpr { syntax }), | ||
3191 | FIELD_EXPR => Expr::FieldExpr(FieldExpr { syntax }), | ||
3192 | AWAIT_EXPR => Expr::AwaitExpr(AwaitExpr { syntax }), | ||
3193 | TRY_EXPR => Expr::TryExpr(TryExpr { syntax }), | ||
3194 | TRY_BLOCK_EXPR => Expr::TryBlockExpr(TryBlockExpr { syntax }), | ||
3195 | CAST_EXPR => Expr::CastExpr(CastExpr { syntax }), | ||
3196 | REF_EXPR => Expr::RefExpr(RefExpr { syntax }), | ||
3197 | PREFIX_EXPR => Expr::PrefixExpr(PrefixExpr { syntax }), | ||
3198 | RANGE_EXPR => Expr::RangeExpr(RangeExpr { syntax }), | ||
3199 | BIN_EXPR => Expr::BinExpr(BinExpr { syntax }), | ||
3200 | LITERAL => Expr::Literal(Literal { syntax }), | ||
3201 | MACRO_CALL => Expr::MacroCall(MacroCall { syntax }), | ||
3202 | BOX_EXPR => Expr::BoxExpr(BoxExpr { syntax }), | ||
3203 | _ => return None, | ||
3204 | }; | ||
3205 | Some(res) | ||
3206 | } | ||
3207 | fn syntax(&self) -> &SyntaxNode { | ||
3208 | match self { | ||
3209 | Expr::TupleExpr(it) => &it.syntax, | ||
3210 | Expr::ArrayExpr(it) => &it.syntax, | ||
3211 | Expr::ParenExpr(it) => &it.syntax, | ||
3212 | Expr::PathExpr(it) => &it.syntax, | ||
3213 | Expr::LambdaExpr(it) => &it.syntax, | ||
3214 | Expr::IfExpr(it) => &it.syntax, | ||
3215 | Expr::LoopExpr(it) => &it.syntax, | ||
3216 | Expr::ForExpr(it) => &it.syntax, | ||
3217 | Expr::WhileExpr(it) => &it.syntax, | ||
3218 | Expr::ContinueExpr(it) => &it.syntax, | ||
3219 | Expr::BreakExpr(it) => &it.syntax, | ||
3220 | Expr::Label(it) => &it.syntax, | ||
3221 | Expr::BlockExpr(it) => &it.syntax, | ||
3222 | Expr::ReturnExpr(it) => &it.syntax, | ||
3223 | Expr::MatchExpr(it) => &it.syntax, | ||
3224 | Expr::RecordLit(it) => &it.syntax, | ||
3225 | Expr::CallExpr(it) => &it.syntax, | ||
3226 | Expr::IndexExpr(it) => &it.syntax, | ||
3227 | Expr::MethodCallExpr(it) => &it.syntax, | ||
3228 | Expr::FieldExpr(it) => &it.syntax, | ||
3229 | Expr::AwaitExpr(it) => &it.syntax, | ||
3230 | Expr::TryExpr(it) => &it.syntax, | ||
3231 | Expr::TryBlockExpr(it) => &it.syntax, | ||
3232 | Expr::CastExpr(it) => &it.syntax, | ||
3233 | Expr::RefExpr(it) => &it.syntax, | ||
3234 | Expr::PrefixExpr(it) => &it.syntax, | ||
3235 | Expr::RangeExpr(it) => &it.syntax, | ||
3236 | Expr::BinExpr(it) => &it.syntax, | ||
3237 | Expr::Literal(it) => &it.syntax, | ||
3238 | Expr::MacroCall(it) => &it.syntax, | ||
3239 | Expr::BoxExpr(it) => &it.syntax, | ||
3240 | } | ||
3241 | } | ||
3242 | } | ||
3243 | impl ast::AttrsOwner for Expr {} | ||
3244 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3245 | pub enum Pat { | ||
3246 | OrPat(OrPat), | ||
3247 | ParenPat(ParenPat), | ||
3248 | RefPat(RefPat), | ||
3249 | BoxPat(BoxPat), | ||
3250 | BindPat(BindPat), | ||
3251 | PlaceholderPat(PlaceholderPat), | ||
3252 | DotDotPat(DotDotPat), | ||
3253 | PathPat(PathPat), | ||
3254 | RecordPat(RecordPat), | ||
3255 | TupleStructPat(TupleStructPat), | ||
3256 | TuplePat(TuplePat), | ||
3257 | SlicePat(SlicePat), | ||
3258 | RangePat(RangePat), | ||
3259 | LiteralPat(LiteralPat), | ||
3260 | MacroPat(MacroPat), | ||
3261 | } | ||
3262 | impl From<OrPat> for Pat { | ||
3263 | fn from(node: OrPat) -> Pat { Pat::OrPat(node) } | ||
3264 | } | ||
3265 | impl From<ParenPat> for Pat { | ||
3266 | fn from(node: ParenPat) -> Pat { Pat::ParenPat(node) } | ||
3267 | } | ||
3268 | impl From<RefPat> for Pat { | ||
3269 | fn from(node: RefPat) -> Pat { Pat::RefPat(node) } | ||
3270 | } | ||
3271 | impl From<BoxPat> for Pat { | ||
3272 | fn from(node: BoxPat) -> Pat { Pat::BoxPat(node) } | ||
3273 | } | ||
3274 | impl From<BindPat> for Pat { | ||
3275 | fn from(node: BindPat) -> Pat { Pat::BindPat(node) } | ||
3276 | } | ||
3277 | impl From<PlaceholderPat> for Pat { | ||
3278 | fn from(node: PlaceholderPat) -> Pat { Pat::PlaceholderPat(node) } | ||
3279 | } | ||
3280 | impl From<DotDotPat> for Pat { | ||
3281 | fn from(node: DotDotPat) -> Pat { Pat::DotDotPat(node) } | ||
3282 | } | ||
3283 | impl From<PathPat> for Pat { | ||
3284 | fn from(node: PathPat) -> Pat { Pat::PathPat(node) } | ||
3285 | } | ||
3286 | impl From<RecordPat> for Pat { | ||
3287 | fn from(node: RecordPat) -> Pat { Pat::RecordPat(node) } | ||
3288 | } | ||
3289 | impl From<TupleStructPat> for Pat { | ||
3290 | fn from(node: TupleStructPat) -> Pat { Pat::TupleStructPat(node) } | ||
3291 | } | ||
3292 | impl From<TuplePat> for Pat { | ||
3293 | fn from(node: TuplePat) -> Pat { Pat::TuplePat(node) } | ||
3294 | } | ||
3295 | impl From<SlicePat> for Pat { | ||
3296 | fn from(node: SlicePat) -> Pat { Pat::SlicePat(node) } | ||
3297 | } | ||
3298 | impl From<RangePat> for Pat { | ||
3299 | fn from(node: RangePat) -> Pat { Pat::RangePat(node) } | ||
3300 | } | ||
3301 | impl From<LiteralPat> for Pat { | ||
3302 | fn from(node: LiteralPat) -> Pat { Pat::LiteralPat(node) } | ||
3303 | } | ||
3304 | impl From<MacroPat> for Pat { | ||
3305 | fn from(node: MacroPat) -> Pat { Pat::MacroPat(node) } | ||
3306 | } | ||
3307 | impl AstNode for Pat { | ||
3308 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3309 | match kind { | ||
3310 | OR_PAT | PAREN_PAT | REF_PAT | BOX_PAT | BIND_PAT | PLACEHOLDER_PAT | DOT_DOT_PAT | ||
3311 | | PATH_PAT | RECORD_PAT | TUPLE_STRUCT_PAT | TUPLE_PAT | SLICE_PAT | RANGE_PAT | ||
3312 | | LITERAL_PAT | MACRO_PAT => true, | ||
3313 | _ => false, | ||
3314 | } | ||
3315 | } | ||
3316 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3317 | let res = match syntax.kind() { | ||
3318 | OR_PAT => Pat::OrPat(OrPat { syntax }), | ||
3319 | PAREN_PAT => Pat::ParenPat(ParenPat { syntax }), | ||
3320 | REF_PAT => Pat::RefPat(RefPat { syntax }), | ||
3321 | BOX_PAT => Pat::BoxPat(BoxPat { syntax }), | ||
3322 | BIND_PAT => Pat::BindPat(BindPat { syntax }), | ||
3323 | PLACEHOLDER_PAT => Pat::PlaceholderPat(PlaceholderPat { syntax }), | ||
3324 | DOT_DOT_PAT => Pat::DotDotPat(DotDotPat { syntax }), | ||
3325 | PATH_PAT => Pat::PathPat(PathPat { syntax }), | ||
3326 | RECORD_PAT => Pat::RecordPat(RecordPat { syntax }), | ||
3327 | TUPLE_STRUCT_PAT => Pat::TupleStructPat(TupleStructPat { syntax }), | ||
3328 | TUPLE_PAT => Pat::TuplePat(TuplePat { syntax }), | ||
3329 | SLICE_PAT => Pat::SlicePat(SlicePat { syntax }), | ||
3330 | RANGE_PAT => Pat::RangePat(RangePat { syntax }), | ||
3331 | LITERAL_PAT => Pat::LiteralPat(LiteralPat { syntax }), | ||
3332 | MACRO_PAT => Pat::MacroPat(MacroPat { syntax }), | ||
3333 | _ => return None, | ||
3334 | }; | ||
3335 | Some(res) | ||
3336 | } | ||
3337 | fn syntax(&self) -> &SyntaxNode { | ||
3338 | match self { | ||
3339 | Pat::OrPat(it) => &it.syntax, | ||
3340 | Pat::ParenPat(it) => &it.syntax, | ||
3341 | Pat::RefPat(it) => &it.syntax, | ||
3342 | Pat::BoxPat(it) => &it.syntax, | ||
3343 | Pat::BindPat(it) => &it.syntax, | ||
3344 | Pat::PlaceholderPat(it) => &it.syntax, | ||
3345 | Pat::DotDotPat(it) => &it.syntax, | ||
3346 | Pat::PathPat(it) => &it.syntax, | ||
3347 | Pat::RecordPat(it) => &it.syntax, | ||
3348 | Pat::TupleStructPat(it) => &it.syntax, | ||
3349 | Pat::TuplePat(it) => &it.syntax, | ||
3350 | Pat::SlicePat(it) => &it.syntax, | ||
3351 | Pat::RangePat(it) => &it.syntax, | ||
3352 | Pat::LiteralPat(it) => &it.syntax, | ||
3353 | Pat::MacroPat(it) => &it.syntax, | ||
3354 | } | ||
3355 | } | ||
3356 | } | ||
3357 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3358 | pub enum RecordInnerPat { | ||
3359 | RecordFieldPat(RecordFieldPat), | ||
3360 | BindPat(BindPat), | ||
3361 | } | ||
3362 | impl From<RecordFieldPat> for RecordInnerPat { | ||
3363 | fn from(node: RecordFieldPat) -> RecordInnerPat { RecordInnerPat::RecordFieldPat(node) } | ||
3364 | } | ||
3365 | impl From<BindPat> for RecordInnerPat { | ||
3366 | fn from(node: BindPat) -> RecordInnerPat { RecordInnerPat::BindPat(node) } | ||
3367 | } | ||
3368 | impl AstNode for RecordInnerPat { | ||
3369 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3370 | match kind { | ||
3371 | RECORD_FIELD_PAT | BIND_PAT => true, | ||
3372 | _ => false, | ||
3373 | } | ||
3374 | } | ||
3375 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3376 | let res = match syntax.kind() { | ||
3377 | RECORD_FIELD_PAT => RecordInnerPat::RecordFieldPat(RecordFieldPat { syntax }), | ||
3378 | BIND_PAT => RecordInnerPat::BindPat(BindPat { syntax }), | ||
3379 | _ => return None, | ||
3380 | }; | ||
3381 | Some(res) | ||
3382 | } | ||
3383 | fn syntax(&self) -> &SyntaxNode { | ||
3384 | match self { | ||
3385 | RecordInnerPat::RecordFieldPat(it) => &it.syntax, | ||
3386 | RecordInnerPat::BindPat(it) => &it.syntax, | ||
3387 | } | ||
3388 | } | ||
3389 | } | ||
3390 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3391 | pub enum AttrInput { | ||
3392 | Literal(Literal), | ||
3393 | TokenTree(TokenTree), | ||
3394 | } | ||
3395 | impl From<Literal> for AttrInput { | ||
3396 | fn from(node: Literal) -> AttrInput { AttrInput::Literal(node) } | ||
3397 | } | ||
3398 | impl From<TokenTree> for AttrInput { | ||
3399 | fn from(node: TokenTree) -> AttrInput { AttrInput::TokenTree(node) } | ||
3400 | } | ||
3401 | impl AstNode for AttrInput { | ||
3402 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3403 | match kind { | ||
3404 | LITERAL | TOKEN_TREE => true, | ||
3405 | _ => false, | ||
3406 | } | ||
3407 | } | ||
3408 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3409 | let res = match syntax.kind() { | ||
3410 | LITERAL => AttrInput::Literal(Literal { syntax }), | ||
3411 | TOKEN_TREE => AttrInput::TokenTree(TokenTree { syntax }), | ||
3412 | _ => return None, | ||
3413 | }; | ||
3414 | Some(res) | ||
3415 | } | ||
3416 | fn syntax(&self) -> &SyntaxNode { | ||
3417 | match self { | ||
3418 | AttrInput::Literal(it) => &it.syntax, | ||
3419 | AttrInput::TokenTree(it) => &it.syntax, | ||
3420 | } | ||
3421 | } | ||
3422 | } | ||
3423 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3424 | pub enum Stmt { | ||
3425 | LetStmt(LetStmt), | ||
3426 | ExprStmt(ExprStmt), | ||
3427 | } | ||
3428 | impl From<LetStmt> for Stmt { | ||
3429 | fn from(node: LetStmt) -> Stmt { Stmt::LetStmt(node) } | ||
3430 | } | ||
3431 | impl From<ExprStmt> for Stmt { | ||
3432 | fn from(node: ExprStmt) -> Stmt { Stmt::ExprStmt(node) } | ||
3433 | } | ||
3434 | impl AstNode for Stmt { | ||
3435 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3436 | match kind { | ||
3437 | LET_STMT | EXPR_STMT => true, | ||
3438 | _ => false, | ||
3439 | } | ||
3440 | } | ||
3441 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3442 | let res = match syntax.kind() { | ||
3443 | LET_STMT => Stmt::LetStmt(LetStmt { syntax }), | ||
3444 | EXPR_STMT => Stmt::ExprStmt(ExprStmt { syntax }), | ||
3445 | _ => return None, | ||
3446 | }; | ||
3447 | Some(res) | ||
3448 | } | ||
3449 | fn syntax(&self) -> &SyntaxNode { | ||
3450 | match self { | ||
3451 | Stmt::LetStmt(it) => &it.syntax, | ||
3452 | Stmt::ExprStmt(it) => &it.syntax, | ||
3453 | } | ||
3454 | } | ||
3455 | } | ||
3456 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
3457 | pub enum FieldDefList { | ||
3458 | RecordFieldDefList(RecordFieldDefList), | ||
3459 | TupleFieldDefList(TupleFieldDefList), | ||
3460 | } | ||
3461 | impl From<RecordFieldDefList> for FieldDefList { | ||
3462 | fn from(node: RecordFieldDefList) -> FieldDefList { FieldDefList::RecordFieldDefList(node) } | ||
3463 | } | ||
3464 | impl From<TupleFieldDefList> for FieldDefList { | ||
3465 | fn from(node: TupleFieldDefList) -> FieldDefList { FieldDefList::TupleFieldDefList(node) } | ||
3466 | } | ||
3467 | impl AstNode for FieldDefList { | ||
3468 | fn can_cast(kind: SyntaxKind) -> bool { | ||
3469 | match kind { | ||
3470 | RECORD_FIELD_DEF_LIST | TUPLE_FIELD_DEF_LIST => true, | ||
3471 | _ => false, | ||
3472 | } | ||
3473 | } | ||
3474 | fn cast(syntax: SyntaxNode) -> Option<Self> { | ||
3475 | let res = match syntax.kind() { | ||
3476 | RECORD_FIELD_DEF_LIST => { | ||
3477 | FieldDefList::RecordFieldDefList(RecordFieldDefList { syntax }) | ||
3478 | } | ||
3479 | TUPLE_FIELD_DEF_LIST => FieldDefList::TupleFieldDefList(TupleFieldDefList { syntax }), | ||
3480 | _ => return None, | ||
3481 | }; | ||
3482 | Some(res) | ||
3483 | } | ||
3484 | fn syntax(&self) -> &SyntaxNode { | ||
3485 | match self { | ||
3486 | FieldDefList::RecordFieldDefList(it) => &it.syntax, | ||
3487 | FieldDefList::TupleFieldDefList(it) => &it.syntax, | ||
3488 | } | ||
3489 | } | ||
3490 | } | ||
3491 | impl std::fmt::Display for NominalDef { | ||
3492 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3493 | std::fmt::Display::fmt(self.syntax(), f) | ||
3494 | } | ||
3495 | } | ||
3496 | impl std::fmt::Display for GenericParam { | ||
3497 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3498 | std::fmt::Display::fmt(self.syntax(), f) | ||
3499 | } | ||
3500 | } | ||
3501 | impl std::fmt::Display for GenericArg { | ||
3502 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3503 | std::fmt::Display::fmt(self.syntax(), f) | ||
3504 | } | ||
3505 | } | ||
3506 | impl std::fmt::Display for TypeRef { | ||
3507 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3508 | std::fmt::Display::fmt(self.syntax(), f) | ||
3509 | } | ||
3510 | } | ||
3511 | impl std::fmt::Display for ModuleItem { | ||
3512 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3513 | std::fmt::Display::fmt(self.syntax(), f) | ||
3514 | } | ||
3515 | } | ||
3516 | impl std::fmt::Display for ImplItem { | ||
3517 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3518 | std::fmt::Display::fmt(self.syntax(), f) | ||
3519 | } | ||
3520 | } | ||
3521 | impl std::fmt::Display for ExternItem { | ||
3522 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3523 | std::fmt::Display::fmt(self.syntax(), f) | ||
3524 | } | ||
3525 | } | ||
3526 | impl std::fmt::Display for Expr { | ||
3527 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3528 | std::fmt::Display::fmt(self.syntax(), f) | ||
3529 | } | ||
3530 | } | ||
3531 | impl std::fmt::Display for Pat { | ||
3532 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3533 | std::fmt::Display::fmt(self.syntax(), f) | ||
3534 | } | ||
3535 | } | ||
3536 | impl std::fmt::Display for RecordInnerPat { | ||
3537 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3538 | std::fmt::Display::fmt(self.syntax(), f) | ||
3539 | } | ||
3540 | } | ||
3541 | impl std::fmt::Display for AttrInput { | ||
3542 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3543 | std::fmt::Display::fmt(self.syntax(), f) | ||
3544 | } | ||
3545 | } | ||
3546 | impl std::fmt::Display for Stmt { | ||
3547 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3548 | std::fmt::Display::fmt(self.syntax(), f) | ||
3549 | } | ||
3550 | } | ||
3551 | impl std::fmt::Display for FieldDefList { | ||
3552 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3553 | std::fmt::Display::fmt(self.syntax(), f) | ||
3554 | } | ||
3555 | } | ||
3556 | impl std::fmt::Display for SourceFile { | ||
3557 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3558 | std::fmt::Display::fmt(self.syntax(), f) | ||
3559 | } | ||
3560 | } | ||
3561 | impl std::fmt::Display for FnDef { | ||
3562 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3563 | std::fmt::Display::fmt(self.syntax(), f) | ||
3564 | } | ||
3565 | } | ||
3566 | impl std::fmt::Display for RetType { | ||
3567 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3568 | std::fmt::Display::fmt(self.syntax(), f) | ||
3569 | } | ||
3570 | } | ||
3571 | impl std::fmt::Display for StructDef { | ||
3572 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3573 | std::fmt::Display::fmt(self.syntax(), f) | ||
3574 | } | ||
3575 | } | ||
3576 | impl std::fmt::Display for UnionDef { | ||
3577 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3578 | std::fmt::Display::fmt(self.syntax(), f) | ||
3579 | } | ||
3580 | } | ||
3581 | impl std::fmt::Display for RecordFieldDefList { | ||
3582 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3583 | std::fmt::Display::fmt(self.syntax(), f) | ||
3584 | } | ||
3585 | } | ||
3586 | impl std::fmt::Display for RecordFieldDef { | ||
3587 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3588 | std::fmt::Display::fmt(self.syntax(), f) | ||
3589 | } | ||
3590 | } | ||
3591 | impl std::fmt::Display for TupleFieldDefList { | ||
3592 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3593 | std::fmt::Display::fmt(self.syntax(), f) | ||
3594 | } | ||
3595 | } | ||
3596 | impl std::fmt::Display for TupleFieldDef { | ||
3597 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3598 | std::fmt::Display::fmt(self.syntax(), f) | ||
3599 | } | ||
3600 | } | ||
3601 | impl std::fmt::Display for EnumDef { | ||
3602 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3603 | std::fmt::Display::fmt(self.syntax(), f) | ||
3604 | } | ||
3605 | } | ||
3606 | impl std::fmt::Display for EnumVariantList { | ||
3607 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3608 | std::fmt::Display::fmt(self.syntax(), f) | ||
3609 | } | ||
3610 | } | ||
3611 | impl std::fmt::Display for EnumVariant { | ||
3612 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3613 | std::fmt::Display::fmt(self.syntax(), f) | ||
3614 | } | ||
3615 | } | ||
3616 | impl std::fmt::Display for TraitDef { | ||
3617 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3618 | std::fmt::Display::fmt(self.syntax(), f) | ||
3619 | } | ||
3620 | } | ||
3621 | impl std::fmt::Display for Module { | ||
3622 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3623 | std::fmt::Display::fmt(self.syntax(), f) | ||
3624 | } | ||
3625 | } | ||
3626 | impl std::fmt::Display for ItemList { | ||
3627 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3628 | std::fmt::Display::fmt(self.syntax(), f) | ||
3629 | } | ||
3630 | } | ||
3631 | impl std::fmt::Display for ConstDef { | ||
3632 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3633 | std::fmt::Display::fmt(self.syntax(), f) | ||
3634 | } | ||
3635 | } | ||
3636 | impl std::fmt::Display for StaticDef { | ||
3637 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3638 | std::fmt::Display::fmt(self.syntax(), f) | ||
3639 | } | ||
3640 | } | ||
3641 | impl std::fmt::Display for TypeAliasDef { | ||
3642 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3643 | std::fmt::Display::fmt(self.syntax(), f) | ||
3644 | } | ||
3645 | } | ||
3646 | impl std::fmt::Display for ImplDef { | ||
3647 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3648 | std::fmt::Display::fmt(self.syntax(), f) | ||
3649 | } | ||
3650 | } | ||
3651 | impl std::fmt::Display for ParenType { | ||
3652 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3653 | std::fmt::Display::fmt(self.syntax(), f) | ||
3654 | } | ||
3655 | } | ||
3656 | impl std::fmt::Display for TupleType { | ||
3657 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3658 | std::fmt::Display::fmt(self.syntax(), f) | ||
3659 | } | ||
3660 | } | ||
3661 | impl std::fmt::Display for NeverType { | ||
3662 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3663 | std::fmt::Display::fmt(self.syntax(), f) | ||
3664 | } | ||
3665 | } | ||
3666 | impl std::fmt::Display for PathType { | ||
3667 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3668 | std::fmt::Display::fmt(self.syntax(), f) | ||
3669 | } | ||
3670 | } | ||
3671 | impl std::fmt::Display for PointerType { | ||
3672 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3673 | std::fmt::Display::fmt(self.syntax(), f) | ||
3674 | } | ||
3675 | } | ||
3676 | impl std::fmt::Display for ArrayType { | ||
3677 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3678 | std::fmt::Display::fmt(self.syntax(), f) | ||
3679 | } | ||
3680 | } | ||
3681 | impl std::fmt::Display for SliceType { | ||
3682 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3683 | std::fmt::Display::fmt(self.syntax(), f) | ||
3684 | } | ||
3685 | } | ||
3686 | impl std::fmt::Display for ReferenceType { | ||
3687 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3688 | std::fmt::Display::fmt(self.syntax(), f) | ||
3689 | } | ||
3690 | } | ||
3691 | impl std::fmt::Display for PlaceholderType { | ||
3692 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3693 | std::fmt::Display::fmt(self.syntax(), f) | ||
3694 | } | ||
3695 | } | ||
3696 | impl std::fmt::Display for FnPointerType { | ||
3697 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3698 | std::fmt::Display::fmt(self.syntax(), f) | ||
3699 | } | ||
3700 | } | ||
3701 | impl std::fmt::Display for ForType { | ||
3702 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3703 | std::fmt::Display::fmt(self.syntax(), f) | ||
3704 | } | ||
3705 | } | ||
3706 | impl std::fmt::Display for ImplTraitType { | ||
3707 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3708 | std::fmt::Display::fmt(self.syntax(), f) | ||
3709 | } | ||
3710 | } | ||
3711 | impl std::fmt::Display for DynTraitType { | ||
3712 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3713 | std::fmt::Display::fmt(self.syntax(), f) | ||
3714 | } | ||
3715 | } | ||
3716 | impl std::fmt::Display for TupleExpr { | ||
3717 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3718 | std::fmt::Display::fmt(self.syntax(), f) | ||
3719 | } | ||
3720 | } | ||
3721 | impl std::fmt::Display for ArrayExpr { | ||
3722 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3723 | std::fmt::Display::fmt(self.syntax(), f) | ||
3724 | } | ||
3725 | } | ||
3726 | impl std::fmt::Display for ParenExpr { | ||
3727 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3728 | std::fmt::Display::fmt(self.syntax(), f) | ||
3729 | } | ||
3730 | } | ||
3731 | impl std::fmt::Display for PathExpr { | ||
3732 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3733 | std::fmt::Display::fmt(self.syntax(), f) | ||
3734 | } | ||
3735 | } | ||
3736 | impl std::fmt::Display for LambdaExpr { | ||
3737 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3738 | std::fmt::Display::fmt(self.syntax(), f) | ||
3739 | } | ||
3740 | } | ||
3741 | impl std::fmt::Display for IfExpr { | ||
3742 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3743 | std::fmt::Display::fmt(self.syntax(), f) | ||
3744 | } | ||
3745 | } | ||
3746 | impl std::fmt::Display for LoopExpr { | ||
3747 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3748 | std::fmt::Display::fmt(self.syntax(), f) | ||
3749 | } | ||
3750 | } | ||
3751 | impl std::fmt::Display for TryBlockExpr { | ||
3752 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3753 | std::fmt::Display::fmt(self.syntax(), f) | ||
3754 | } | ||
3755 | } | ||
3756 | impl std::fmt::Display for ForExpr { | ||
3757 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3758 | std::fmt::Display::fmt(self.syntax(), f) | ||
3759 | } | ||
3760 | } | ||
3761 | impl std::fmt::Display for WhileExpr { | ||
3762 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3763 | std::fmt::Display::fmt(self.syntax(), f) | ||
3764 | } | ||
3765 | } | ||
3766 | impl std::fmt::Display for ContinueExpr { | ||
3767 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3768 | std::fmt::Display::fmt(self.syntax(), f) | ||
3769 | } | ||
3770 | } | ||
3771 | impl std::fmt::Display for BreakExpr { | ||
3772 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3773 | std::fmt::Display::fmt(self.syntax(), f) | ||
3774 | } | ||
3775 | } | ||
3776 | impl std::fmt::Display for Label { | ||
3777 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3778 | std::fmt::Display::fmt(self.syntax(), f) | ||
3779 | } | ||
3780 | } | ||
3781 | impl std::fmt::Display for BlockExpr { | ||
3782 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3783 | std::fmt::Display::fmt(self.syntax(), f) | ||
3784 | } | ||
3785 | } | ||
3786 | impl std::fmt::Display for ReturnExpr { | ||
3787 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3788 | std::fmt::Display::fmt(self.syntax(), f) | ||
3789 | } | ||
3790 | } | ||
3791 | impl std::fmt::Display for CallExpr { | ||
3792 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3793 | std::fmt::Display::fmt(self.syntax(), f) | ||
3794 | } | ||
3795 | } | ||
3796 | impl std::fmt::Display for MethodCallExpr { | ||
3797 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3798 | std::fmt::Display::fmt(self.syntax(), f) | ||
3799 | } | ||
3800 | } | ||
3801 | impl std::fmt::Display for IndexExpr { | ||
3802 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3803 | std::fmt::Display::fmt(self.syntax(), f) | ||
3804 | } | ||
3805 | } | ||
3806 | impl std::fmt::Display for FieldExpr { | ||
3807 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3808 | std::fmt::Display::fmt(self.syntax(), f) | ||
3809 | } | ||
3810 | } | ||
3811 | impl std::fmt::Display for AwaitExpr { | ||
3812 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3813 | std::fmt::Display::fmt(self.syntax(), f) | ||
3814 | } | ||
3815 | } | ||
3816 | impl std::fmt::Display for TryExpr { | ||
3817 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3818 | std::fmt::Display::fmt(self.syntax(), f) | ||
3819 | } | ||
3820 | } | ||
3821 | impl std::fmt::Display for CastExpr { | ||
3822 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3823 | std::fmt::Display::fmt(self.syntax(), f) | ||
3824 | } | ||
3825 | } | ||
3826 | impl std::fmt::Display for RefExpr { | ||
3827 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3828 | std::fmt::Display::fmt(self.syntax(), f) | ||
3829 | } | ||
3830 | } | ||
3831 | impl std::fmt::Display for PrefixExpr { | ||
3832 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3833 | std::fmt::Display::fmt(self.syntax(), f) | ||
3834 | } | ||
3835 | } | ||
3836 | impl std::fmt::Display for BoxExpr { | ||
3837 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3838 | std::fmt::Display::fmt(self.syntax(), f) | ||
3839 | } | ||
3840 | } | ||
3841 | impl std::fmt::Display for RangeExpr { | ||
3842 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3843 | std::fmt::Display::fmt(self.syntax(), f) | ||
3844 | } | ||
3845 | } | ||
3846 | impl std::fmt::Display for BinExpr { | ||
3847 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3848 | std::fmt::Display::fmt(self.syntax(), f) | ||
3849 | } | ||
3850 | } | ||
3851 | impl std::fmt::Display for Literal { | ||
3852 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3853 | std::fmt::Display::fmt(self.syntax(), f) | ||
3854 | } | ||
3855 | } | ||
3856 | impl std::fmt::Display for MatchExpr { | ||
3857 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3858 | std::fmt::Display::fmt(self.syntax(), f) | ||
3859 | } | ||
3860 | } | ||
3861 | impl std::fmt::Display for MatchArmList { | ||
3862 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3863 | std::fmt::Display::fmt(self.syntax(), f) | ||
3864 | } | ||
3865 | } | ||
3866 | impl std::fmt::Display for MatchArm { | ||
3867 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3868 | std::fmt::Display::fmt(self.syntax(), f) | ||
3869 | } | ||
3870 | } | ||
3871 | impl std::fmt::Display for MatchGuard { | ||
3872 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3873 | std::fmt::Display::fmt(self.syntax(), f) | ||
3874 | } | ||
3875 | } | ||
3876 | impl std::fmt::Display for RecordLit { | ||
3877 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3878 | std::fmt::Display::fmt(self.syntax(), f) | ||
3879 | } | ||
3880 | } | ||
3881 | impl std::fmt::Display for RecordFieldList { | ||
3882 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3883 | std::fmt::Display::fmt(self.syntax(), f) | ||
3884 | } | ||
3885 | } | ||
3886 | impl std::fmt::Display for RecordField { | ||
3887 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3888 | std::fmt::Display::fmt(self.syntax(), f) | ||
3889 | } | ||
3890 | } | ||
3891 | impl std::fmt::Display for OrPat { | ||
3892 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3893 | std::fmt::Display::fmt(self.syntax(), f) | ||
3894 | } | ||
3895 | } | ||
3896 | impl std::fmt::Display for ParenPat { | ||
3897 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3898 | std::fmt::Display::fmt(self.syntax(), f) | ||
3899 | } | ||
3900 | } | ||
3901 | impl std::fmt::Display for RefPat { | ||
3902 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3903 | std::fmt::Display::fmt(self.syntax(), f) | ||
3904 | } | ||
3905 | } | ||
3906 | impl std::fmt::Display for BoxPat { | ||
3907 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3908 | std::fmt::Display::fmt(self.syntax(), f) | ||
3909 | } | ||
3910 | } | ||
3911 | impl std::fmt::Display for BindPat { | ||
3912 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3913 | std::fmt::Display::fmt(self.syntax(), f) | ||
3914 | } | ||
3915 | } | ||
3916 | impl std::fmt::Display for PlaceholderPat { | ||
3917 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3918 | std::fmt::Display::fmt(self.syntax(), f) | ||
3919 | } | ||
3920 | } | ||
3921 | impl std::fmt::Display for DotDotPat { | ||
3922 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3923 | std::fmt::Display::fmt(self.syntax(), f) | ||
3924 | } | ||
3925 | } | ||
3926 | impl std::fmt::Display for PathPat { | ||
3927 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3928 | std::fmt::Display::fmt(self.syntax(), f) | ||
3929 | } | ||
3930 | } | ||
3931 | impl std::fmt::Display for SlicePat { | ||
3932 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3933 | std::fmt::Display::fmt(self.syntax(), f) | ||
3934 | } | ||
3935 | } | ||
3936 | impl std::fmt::Display for RangePat { | ||
3937 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3938 | std::fmt::Display::fmt(self.syntax(), f) | ||
3939 | } | ||
3940 | } | ||
3941 | impl std::fmt::Display for LiteralPat { | ||
3942 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3943 | std::fmt::Display::fmt(self.syntax(), f) | ||
3944 | } | ||
3945 | } | ||
3946 | impl std::fmt::Display for MacroPat { | ||
3947 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3948 | std::fmt::Display::fmt(self.syntax(), f) | ||
3949 | } | ||
3950 | } | ||
3951 | impl std::fmt::Display for RecordPat { | ||
3952 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3953 | std::fmt::Display::fmt(self.syntax(), f) | ||
3954 | } | ||
3955 | } | ||
3956 | impl std::fmt::Display for RecordFieldPatList { | ||
3957 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3958 | std::fmt::Display::fmt(self.syntax(), f) | ||
3959 | } | ||
3960 | } | ||
3961 | impl std::fmt::Display for RecordFieldPat { | ||
3962 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3963 | std::fmt::Display::fmt(self.syntax(), f) | ||
3964 | } | ||
3965 | } | ||
3966 | impl std::fmt::Display for TupleStructPat { | ||
3967 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3968 | std::fmt::Display::fmt(self.syntax(), f) | ||
3969 | } | ||
3970 | } | ||
3971 | impl std::fmt::Display for TuplePat { | ||
3972 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3973 | std::fmt::Display::fmt(self.syntax(), f) | ||
3974 | } | ||
3975 | } | ||
3976 | impl std::fmt::Display for Visibility { | ||
3977 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3978 | std::fmt::Display::fmt(self.syntax(), f) | ||
3979 | } | ||
3980 | } | ||
3981 | impl std::fmt::Display for Name { | ||
3982 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3983 | std::fmt::Display::fmt(self.syntax(), f) | ||
3984 | } | ||
3985 | } | ||
3986 | impl std::fmt::Display for NameRef { | ||
3987 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3988 | std::fmt::Display::fmt(self.syntax(), f) | ||
3989 | } | ||
3990 | } | ||
3991 | impl std::fmt::Display for MacroCall { | ||
3992 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3993 | std::fmt::Display::fmt(self.syntax(), f) | ||
3994 | } | ||
3995 | } | ||
3996 | impl std::fmt::Display for Attr { | ||
3997 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
3998 | std::fmt::Display::fmt(self.syntax(), f) | ||
3999 | } | ||
4000 | } | ||
4001 | impl std::fmt::Display for TokenTree { | ||
4002 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4003 | std::fmt::Display::fmt(self.syntax(), f) | ||
4004 | } | ||
4005 | } | ||
4006 | impl std::fmt::Display for TypeParamList { | ||
4007 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4008 | std::fmt::Display::fmt(self.syntax(), f) | ||
4009 | } | ||
4010 | } | ||
4011 | impl std::fmt::Display for TypeParam { | ||
4012 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4013 | std::fmt::Display::fmt(self.syntax(), f) | ||
4014 | } | ||
4015 | } | ||
4016 | impl std::fmt::Display for ConstParam { | ||
4017 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4018 | std::fmt::Display::fmt(self.syntax(), f) | ||
4019 | } | ||
4020 | } | ||
4021 | impl std::fmt::Display for LifetimeParam { | ||
4022 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4023 | std::fmt::Display::fmt(self.syntax(), f) | ||
4024 | } | ||
4025 | } | ||
4026 | impl std::fmt::Display for TypeBound { | ||
4027 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4028 | std::fmt::Display::fmt(self.syntax(), f) | ||
4029 | } | ||
4030 | } | ||
4031 | impl std::fmt::Display for TypeBoundList { | ||
4032 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4033 | std::fmt::Display::fmt(self.syntax(), f) | ||
4034 | } | ||
4035 | } | ||
4036 | impl std::fmt::Display for WherePred { | ||
4037 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4038 | std::fmt::Display::fmt(self.syntax(), f) | ||
4039 | } | ||
4040 | } | ||
4041 | impl std::fmt::Display for WhereClause { | ||
4042 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4043 | std::fmt::Display::fmt(self.syntax(), f) | ||
4044 | } | ||
4045 | } | ||
4046 | impl std::fmt::Display for Abi { | ||
4047 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4048 | std::fmt::Display::fmt(self.syntax(), f) | ||
4049 | } | ||
4050 | } | ||
4051 | impl std::fmt::Display for ExprStmt { | ||
4052 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4053 | std::fmt::Display::fmt(self.syntax(), f) | ||
4054 | } | ||
4055 | } | ||
4056 | impl std::fmt::Display for LetStmt { | ||
4057 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4058 | std::fmt::Display::fmt(self.syntax(), f) | ||
4059 | } | ||
4060 | } | ||
4061 | impl std::fmt::Display for Condition { | ||
4062 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4063 | std::fmt::Display::fmt(self.syntax(), f) | ||
4064 | } | ||
4065 | } | ||
4066 | impl std::fmt::Display for Block { | ||
4067 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4068 | std::fmt::Display::fmt(self.syntax(), f) | ||
4069 | } | ||
4070 | } | ||
4071 | impl std::fmt::Display for ParamList { | ||
4072 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4073 | std::fmt::Display::fmt(self.syntax(), f) | ||
4074 | } | ||
4075 | } | ||
4076 | impl std::fmt::Display for SelfParam { | ||
4077 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4078 | std::fmt::Display::fmt(self.syntax(), f) | ||
4079 | } | ||
4080 | } | ||
4081 | impl std::fmt::Display for Param { | ||
4082 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4083 | std::fmt::Display::fmt(self.syntax(), f) | ||
4084 | } | ||
4085 | } | ||
4086 | impl std::fmt::Display for UseItem { | ||
4087 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4088 | std::fmt::Display::fmt(self.syntax(), f) | ||
4089 | } | ||
4090 | } | ||
4091 | impl std::fmt::Display for UseTree { | ||
4092 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4093 | std::fmt::Display::fmt(self.syntax(), f) | ||
4094 | } | ||
4095 | } | ||
4096 | impl std::fmt::Display for Alias { | ||
4097 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4098 | std::fmt::Display::fmt(self.syntax(), f) | ||
4099 | } | ||
4100 | } | ||
4101 | impl std::fmt::Display for UseTreeList { | ||
4102 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4103 | std::fmt::Display::fmt(self.syntax(), f) | ||
4104 | } | ||
4105 | } | ||
4106 | impl std::fmt::Display for ExternCrateItem { | ||
4107 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4108 | std::fmt::Display::fmt(self.syntax(), f) | ||
4109 | } | ||
4110 | } | ||
4111 | impl std::fmt::Display for ArgList { | ||
4112 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4113 | std::fmt::Display::fmt(self.syntax(), f) | ||
4114 | } | ||
4115 | } | ||
4116 | impl std::fmt::Display for Path { | ||
4117 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4118 | std::fmt::Display::fmt(self.syntax(), f) | ||
4119 | } | ||
4120 | } | ||
4121 | impl std::fmt::Display for PathSegment { | ||
4122 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4123 | std::fmt::Display::fmt(self.syntax(), f) | ||
4124 | } | ||
4125 | } | ||
4126 | impl std::fmt::Display for TypeArgList { | ||
4127 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4128 | std::fmt::Display::fmt(self.syntax(), f) | ||
4129 | } | ||
4130 | } | ||
4131 | impl std::fmt::Display for TypeArg { | ||
4132 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4133 | std::fmt::Display::fmt(self.syntax(), f) | ||
4134 | } | ||
4135 | } | ||
4136 | impl std::fmt::Display for AssocTypeArg { | ||
4137 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4138 | std::fmt::Display::fmt(self.syntax(), f) | ||
4139 | } | ||
4140 | } | ||
4141 | impl std::fmt::Display for LifetimeArg { | ||
4142 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4143 | std::fmt::Display::fmt(self.syntax(), f) | ||
4144 | } | ||
4145 | } | ||
4146 | impl std::fmt::Display for ConstArg { | ||
4147 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4148 | std::fmt::Display::fmt(self.syntax(), f) | ||
4149 | } | ||
4150 | } | ||
4151 | impl std::fmt::Display for MacroItems { | ||
4152 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4153 | std::fmt::Display::fmt(self.syntax(), f) | ||
4154 | } | ||
4155 | } | ||
4156 | impl std::fmt::Display for MacroStmts { | ||
4157 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4158 | std::fmt::Display::fmt(self.syntax(), f) | ||
4159 | } | ||
4160 | } | ||
4161 | impl std::fmt::Display for ExternItemList { | ||
4162 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4163 | std::fmt::Display::fmt(self.syntax(), f) | ||
4164 | } | ||
4165 | } | ||
4166 | impl std::fmt::Display for ExternBlock { | ||
4167 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4168 | std::fmt::Display::fmt(self.syntax(), f) | ||
4169 | } | ||
4170 | } | ||
4171 | impl std::fmt::Display for MetaItem { | ||
4172 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4173 | std::fmt::Display::fmt(self.syntax(), f) | ||
4174 | } | ||
4175 | } | ||
4176 | impl std::fmt::Display for MacroDef { | ||
4177 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
4178 | std::fmt::Display::fmt(self.syntax(), f) | ||
4179 | } | ||
4180 | } | ||
diff --git a/crates/ra_syntax/src/ast/generated/tokens.rs b/crates/ra_syntax/src/ast/generated/tokens.rs new file mode 100644 index 000000000..e64b8bce6 --- /dev/null +++ b/crates/ra_syntax/src/ast/generated/tokens.rs | |||
@@ -0,0 +1,2808 @@ | |||
1 | //! Generated file, do not edit by hand, see `xtask/src/codegen` | ||
2 | |||
3 | use crate::{ | ||
4 | ast::AstToken, | ||
5 | SyntaxKind::{self, *}, | ||
6 | SyntaxToken, | ||
7 | }; | ||
8 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
9 | pub struct Semi { | ||
10 | pub(crate) syntax: SyntaxToken, | ||
11 | } | ||
12 | impl std::fmt::Display for Semi { | ||
13 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
14 | std::fmt::Display::fmt(&self.syntax, f) | ||
15 | } | ||
16 | } | ||
17 | impl AstToken for Semi { | ||
18 | fn can_cast(kind: SyntaxKind) -> bool { kind == SEMI } | ||
19 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
20 | if Self::can_cast(syntax.kind()) { | ||
21 | Some(Self { syntax }) | ||
22 | } else { | ||
23 | None | ||
24 | } | ||
25 | } | ||
26 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
27 | } | ||
28 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
29 | pub struct Comma { | ||
30 | pub(crate) syntax: SyntaxToken, | ||
31 | } | ||
32 | impl std::fmt::Display for Comma { | ||
33 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
34 | std::fmt::Display::fmt(&self.syntax, f) | ||
35 | } | ||
36 | } | ||
37 | impl AstToken for Comma { | ||
38 | fn can_cast(kind: SyntaxKind) -> bool { kind == COMMA } | ||
39 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
40 | if Self::can_cast(syntax.kind()) { | ||
41 | Some(Self { syntax }) | ||
42 | } else { | ||
43 | None | ||
44 | } | ||
45 | } | ||
46 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
47 | } | ||
48 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
49 | pub struct LParen { | ||
50 | pub(crate) syntax: SyntaxToken, | ||
51 | } | ||
52 | impl std::fmt::Display for LParen { | ||
53 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
54 | std::fmt::Display::fmt(&self.syntax, f) | ||
55 | } | ||
56 | } | ||
57 | impl AstToken for LParen { | ||
58 | fn can_cast(kind: SyntaxKind) -> bool { kind == L_PAREN } | ||
59 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
60 | if Self::can_cast(syntax.kind()) { | ||
61 | Some(Self { syntax }) | ||
62 | } else { | ||
63 | None | ||
64 | } | ||
65 | } | ||
66 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
67 | } | ||
68 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
69 | pub struct RParen { | ||
70 | pub(crate) syntax: SyntaxToken, | ||
71 | } | ||
72 | impl std::fmt::Display for RParen { | ||
73 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
74 | std::fmt::Display::fmt(&self.syntax, f) | ||
75 | } | ||
76 | } | ||
77 | impl AstToken for RParen { | ||
78 | fn can_cast(kind: SyntaxKind) -> bool { kind == R_PAREN } | ||
79 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
80 | if Self::can_cast(syntax.kind()) { | ||
81 | Some(Self { syntax }) | ||
82 | } else { | ||
83 | None | ||
84 | } | ||
85 | } | ||
86 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
87 | } | ||
88 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
89 | pub struct LCurly { | ||
90 | pub(crate) syntax: SyntaxToken, | ||
91 | } | ||
92 | impl std::fmt::Display for LCurly { | ||
93 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
94 | std::fmt::Display::fmt(&self.syntax, f) | ||
95 | } | ||
96 | } | ||
97 | impl AstToken for LCurly { | ||
98 | fn can_cast(kind: SyntaxKind) -> bool { kind == L_CURLY } | ||
99 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
100 | if Self::can_cast(syntax.kind()) { | ||
101 | Some(Self { syntax }) | ||
102 | } else { | ||
103 | None | ||
104 | } | ||
105 | } | ||
106 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
107 | } | ||
108 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
109 | pub struct RCurly { | ||
110 | pub(crate) syntax: SyntaxToken, | ||
111 | } | ||
112 | impl std::fmt::Display for RCurly { | ||
113 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
114 | std::fmt::Display::fmt(&self.syntax, f) | ||
115 | } | ||
116 | } | ||
117 | impl AstToken for RCurly { | ||
118 | fn can_cast(kind: SyntaxKind) -> bool { kind == R_CURLY } | ||
119 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
120 | if Self::can_cast(syntax.kind()) { | ||
121 | Some(Self { syntax }) | ||
122 | } else { | ||
123 | None | ||
124 | } | ||
125 | } | ||
126 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
127 | } | ||
128 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
129 | pub struct LBrack { | ||
130 | pub(crate) syntax: SyntaxToken, | ||
131 | } | ||
132 | impl std::fmt::Display for LBrack { | ||
133 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
134 | std::fmt::Display::fmt(&self.syntax, f) | ||
135 | } | ||
136 | } | ||
137 | impl AstToken for LBrack { | ||
138 | fn can_cast(kind: SyntaxKind) -> bool { kind == L_BRACK } | ||
139 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
140 | if Self::can_cast(syntax.kind()) { | ||
141 | Some(Self { syntax }) | ||
142 | } else { | ||
143 | None | ||
144 | } | ||
145 | } | ||
146 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
147 | } | ||
148 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
149 | pub struct RBrack { | ||
150 | pub(crate) syntax: SyntaxToken, | ||
151 | } | ||
152 | impl std::fmt::Display for RBrack { | ||
153 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
154 | std::fmt::Display::fmt(&self.syntax, f) | ||
155 | } | ||
156 | } | ||
157 | impl AstToken for RBrack { | ||
158 | fn can_cast(kind: SyntaxKind) -> bool { kind == R_BRACK } | ||
159 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
160 | if Self::can_cast(syntax.kind()) { | ||
161 | Some(Self { syntax }) | ||
162 | } else { | ||
163 | None | ||
164 | } | ||
165 | } | ||
166 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
167 | } | ||
168 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
169 | pub struct LAngle { | ||
170 | pub(crate) syntax: SyntaxToken, | ||
171 | } | ||
172 | impl std::fmt::Display for LAngle { | ||
173 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
174 | std::fmt::Display::fmt(&self.syntax, f) | ||
175 | } | ||
176 | } | ||
177 | impl AstToken for LAngle { | ||
178 | fn can_cast(kind: SyntaxKind) -> bool { kind == L_ANGLE } | ||
179 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
180 | if Self::can_cast(syntax.kind()) { | ||
181 | Some(Self { syntax }) | ||
182 | } else { | ||
183 | None | ||
184 | } | ||
185 | } | ||
186 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
187 | } | ||
188 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
189 | pub struct RAngle { | ||
190 | pub(crate) syntax: SyntaxToken, | ||
191 | } | ||
192 | impl std::fmt::Display for RAngle { | ||
193 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
194 | std::fmt::Display::fmt(&self.syntax, f) | ||
195 | } | ||
196 | } | ||
197 | impl AstToken for RAngle { | ||
198 | fn can_cast(kind: SyntaxKind) -> bool { kind == R_ANGLE } | ||
199 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
200 | if Self::can_cast(syntax.kind()) { | ||
201 | Some(Self { syntax }) | ||
202 | } else { | ||
203 | None | ||
204 | } | ||
205 | } | ||
206 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
207 | } | ||
208 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
209 | pub struct At { | ||
210 | pub(crate) syntax: SyntaxToken, | ||
211 | } | ||
212 | impl std::fmt::Display for At { | ||
213 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
214 | std::fmt::Display::fmt(&self.syntax, f) | ||
215 | } | ||
216 | } | ||
217 | impl AstToken for At { | ||
218 | fn can_cast(kind: SyntaxKind) -> bool { kind == AT } | ||
219 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
220 | if Self::can_cast(syntax.kind()) { | ||
221 | Some(Self { syntax }) | ||
222 | } else { | ||
223 | None | ||
224 | } | ||
225 | } | ||
226 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
227 | } | ||
228 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
229 | pub struct Pound { | ||
230 | pub(crate) syntax: SyntaxToken, | ||
231 | } | ||
232 | impl std::fmt::Display for Pound { | ||
233 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
234 | std::fmt::Display::fmt(&self.syntax, f) | ||
235 | } | ||
236 | } | ||
237 | impl AstToken for Pound { | ||
238 | fn can_cast(kind: SyntaxKind) -> bool { kind == POUND } | ||
239 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
240 | if Self::can_cast(syntax.kind()) { | ||
241 | Some(Self { syntax }) | ||
242 | } else { | ||
243 | None | ||
244 | } | ||
245 | } | ||
246 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
247 | } | ||
248 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
249 | pub struct Tilde { | ||
250 | pub(crate) syntax: SyntaxToken, | ||
251 | } | ||
252 | impl std::fmt::Display for Tilde { | ||
253 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
254 | std::fmt::Display::fmt(&self.syntax, f) | ||
255 | } | ||
256 | } | ||
257 | impl AstToken for Tilde { | ||
258 | fn can_cast(kind: SyntaxKind) -> bool { kind == TILDE } | ||
259 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
260 | if Self::can_cast(syntax.kind()) { | ||
261 | Some(Self { syntax }) | ||
262 | } else { | ||
263 | None | ||
264 | } | ||
265 | } | ||
266 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
267 | } | ||
268 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
269 | pub struct Question { | ||
270 | pub(crate) syntax: SyntaxToken, | ||
271 | } | ||
272 | impl std::fmt::Display for Question { | ||
273 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
274 | std::fmt::Display::fmt(&self.syntax, f) | ||
275 | } | ||
276 | } | ||
277 | impl AstToken for Question { | ||
278 | fn can_cast(kind: SyntaxKind) -> bool { kind == QUESTION } | ||
279 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
280 | if Self::can_cast(syntax.kind()) { | ||
281 | Some(Self { syntax }) | ||
282 | } else { | ||
283 | None | ||
284 | } | ||
285 | } | ||
286 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
287 | } | ||
288 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
289 | pub struct Dollar { | ||
290 | pub(crate) syntax: SyntaxToken, | ||
291 | } | ||
292 | impl std::fmt::Display for Dollar { | ||
293 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
294 | std::fmt::Display::fmt(&self.syntax, f) | ||
295 | } | ||
296 | } | ||
297 | impl AstToken for Dollar { | ||
298 | fn can_cast(kind: SyntaxKind) -> bool { kind == DOLLAR } | ||
299 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
300 | if Self::can_cast(syntax.kind()) { | ||
301 | Some(Self { syntax }) | ||
302 | } else { | ||
303 | None | ||
304 | } | ||
305 | } | ||
306 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
307 | } | ||
308 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
309 | pub struct Amp { | ||
310 | pub(crate) syntax: SyntaxToken, | ||
311 | } | ||
312 | impl std::fmt::Display for Amp { | ||
313 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
314 | std::fmt::Display::fmt(&self.syntax, f) | ||
315 | } | ||
316 | } | ||
317 | impl AstToken for Amp { | ||
318 | fn can_cast(kind: SyntaxKind) -> bool { kind == AMP } | ||
319 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
320 | if Self::can_cast(syntax.kind()) { | ||
321 | Some(Self { syntax }) | ||
322 | } else { | ||
323 | None | ||
324 | } | ||
325 | } | ||
326 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
327 | } | ||
328 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
329 | pub struct Pipe { | ||
330 | pub(crate) syntax: SyntaxToken, | ||
331 | } | ||
332 | impl std::fmt::Display for Pipe { | ||
333 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
334 | std::fmt::Display::fmt(&self.syntax, f) | ||
335 | } | ||
336 | } | ||
337 | impl AstToken for Pipe { | ||
338 | fn can_cast(kind: SyntaxKind) -> bool { kind == PIPE } | ||
339 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
340 | if Self::can_cast(syntax.kind()) { | ||
341 | Some(Self { syntax }) | ||
342 | } else { | ||
343 | None | ||
344 | } | ||
345 | } | ||
346 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
347 | } | ||
348 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
349 | pub struct Plus { | ||
350 | pub(crate) syntax: SyntaxToken, | ||
351 | } | ||
352 | impl std::fmt::Display for Plus { | ||
353 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
354 | std::fmt::Display::fmt(&self.syntax, f) | ||
355 | } | ||
356 | } | ||
357 | impl AstToken for Plus { | ||
358 | fn can_cast(kind: SyntaxKind) -> bool { kind == PLUS } | ||
359 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
360 | if Self::can_cast(syntax.kind()) { | ||
361 | Some(Self { syntax }) | ||
362 | } else { | ||
363 | None | ||
364 | } | ||
365 | } | ||
366 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
367 | } | ||
368 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
369 | pub struct Star { | ||
370 | pub(crate) syntax: SyntaxToken, | ||
371 | } | ||
372 | impl std::fmt::Display for Star { | ||
373 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
374 | std::fmt::Display::fmt(&self.syntax, f) | ||
375 | } | ||
376 | } | ||
377 | impl AstToken for Star { | ||
378 | fn can_cast(kind: SyntaxKind) -> bool { kind == STAR } | ||
379 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
380 | if Self::can_cast(syntax.kind()) { | ||
381 | Some(Self { syntax }) | ||
382 | } else { | ||
383 | None | ||
384 | } | ||
385 | } | ||
386 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
387 | } | ||
388 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
389 | pub struct Slash { | ||
390 | pub(crate) syntax: SyntaxToken, | ||
391 | } | ||
392 | impl std::fmt::Display for Slash { | ||
393 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
394 | std::fmt::Display::fmt(&self.syntax, f) | ||
395 | } | ||
396 | } | ||
397 | impl AstToken for Slash { | ||
398 | fn can_cast(kind: SyntaxKind) -> bool { kind == SLASH } | ||
399 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
400 | if Self::can_cast(syntax.kind()) { | ||
401 | Some(Self { syntax }) | ||
402 | } else { | ||
403 | None | ||
404 | } | ||
405 | } | ||
406 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
407 | } | ||
408 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
409 | pub struct Caret { | ||
410 | pub(crate) syntax: SyntaxToken, | ||
411 | } | ||
412 | impl std::fmt::Display for Caret { | ||
413 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
414 | std::fmt::Display::fmt(&self.syntax, f) | ||
415 | } | ||
416 | } | ||
417 | impl AstToken for Caret { | ||
418 | fn can_cast(kind: SyntaxKind) -> bool { kind == CARET } | ||
419 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
420 | if Self::can_cast(syntax.kind()) { | ||
421 | Some(Self { syntax }) | ||
422 | } else { | ||
423 | None | ||
424 | } | ||
425 | } | ||
426 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
427 | } | ||
428 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
429 | pub struct Percent { | ||
430 | pub(crate) syntax: SyntaxToken, | ||
431 | } | ||
432 | impl std::fmt::Display for Percent { | ||
433 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
434 | std::fmt::Display::fmt(&self.syntax, f) | ||
435 | } | ||
436 | } | ||
437 | impl AstToken for Percent { | ||
438 | fn can_cast(kind: SyntaxKind) -> bool { kind == PERCENT } | ||
439 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
440 | if Self::can_cast(syntax.kind()) { | ||
441 | Some(Self { syntax }) | ||
442 | } else { | ||
443 | None | ||
444 | } | ||
445 | } | ||
446 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
447 | } | ||
448 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
449 | pub struct Underscore { | ||
450 | pub(crate) syntax: SyntaxToken, | ||
451 | } | ||
452 | impl std::fmt::Display for Underscore { | ||
453 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
454 | std::fmt::Display::fmt(&self.syntax, f) | ||
455 | } | ||
456 | } | ||
457 | impl AstToken for Underscore { | ||
458 | fn can_cast(kind: SyntaxKind) -> bool { kind == UNDERSCORE } | ||
459 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
460 | if Self::can_cast(syntax.kind()) { | ||
461 | Some(Self { syntax }) | ||
462 | } else { | ||
463 | None | ||
464 | } | ||
465 | } | ||
466 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
467 | } | ||
468 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
469 | pub struct Dot { | ||
470 | pub(crate) syntax: SyntaxToken, | ||
471 | } | ||
472 | impl std::fmt::Display for Dot { | ||
473 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
474 | std::fmt::Display::fmt(&self.syntax, f) | ||
475 | } | ||
476 | } | ||
477 | impl AstToken for Dot { | ||
478 | fn can_cast(kind: SyntaxKind) -> bool { kind == DOT } | ||
479 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
480 | if Self::can_cast(syntax.kind()) { | ||
481 | Some(Self { syntax }) | ||
482 | } else { | ||
483 | None | ||
484 | } | ||
485 | } | ||
486 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
487 | } | ||
488 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
489 | pub struct Dotdot { | ||
490 | pub(crate) syntax: SyntaxToken, | ||
491 | } | ||
492 | impl std::fmt::Display for Dotdot { | ||
493 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
494 | std::fmt::Display::fmt(&self.syntax, f) | ||
495 | } | ||
496 | } | ||
497 | impl AstToken for Dotdot { | ||
498 | fn can_cast(kind: SyntaxKind) -> bool { kind == DOTDOT } | ||
499 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
500 | if Self::can_cast(syntax.kind()) { | ||
501 | Some(Self { syntax }) | ||
502 | } else { | ||
503 | None | ||
504 | } | ||
505 | } | ||
506 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
507 | } | ||
508 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
509 | pub struct Dotdotdot { | ||
510 | pub(crate) syntax: SyntaxToken, | ||
511 | } | ||
512 | impl std::fmt::Display for Dotdotdot { | ||
513 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
514 | std::fmt::Display::fmt(&self.syntax, f) | ||
515 | } | ||
516 | } | ||
517 | impl AstToken for Dotdotdot { | ||
518 | fn can_cast(kind: SyntaxKind) -> bool { kind == DOTDOTDOT } | ||
519 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
520 | if Self::can_cast(syntax.kind()) { | ||
521 | Some(Self { syntax }) | ||
522 | } else { | ||
523 | None | ||
524 | } | ||
525 | } | ||
526 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
527 | } | ||
528 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
529 | pub struct Dotdoteq { | ||
530 | pub(crate) syntax: SyntaxToken, | ||
531 | } | ||
532 | impl std::fmt::Display for Dotdoteq { | ||
533 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
534 | std::fmt::Display::fmt(&self.syntax, f) | ||
535 | } | ||
536 | } | ||
537 | impl AstToken for Dotdoteq { | ||
538 | fn can_cast(kind: SyntaxKind) -> bool { kind == DOTDOTEQ } | ||
539 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
540 | if Self::can_cast(syntax.kind()) { | ||
541 | Some(Self { syntax }) | ||
542 | } else { | ||
543 | None | ||
544 | } | ||
545 | } | ||
546 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
547 | } | ||
548 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
549 | pub struct Colon { | ||
550 | pub(crate) syntax: SyntaxToken, | ||
551 | } | ||
552 | impl std::fmt::Display for Colon { | ||
553 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
554 | std::fmt::Display::fmt(&self.syntax, f) | ||
555 | } | ||
556 | } | ||
557 | impl AstToken for Colon { | ||
558 | fn can_cast(kind: SyntaxKind) -> bool { kind == COLON } | ||
559 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
560 | if Self::can_cast(syntax.kind()) { | ||
561 | Some(Self { syntax }) | ||
562 | } else { | ||
563 | None | ||
564 | } | ||
565 | } | ||
566 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
567 | } | ||
568 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
569 | pub struct Coloncolon { | ||
570 | pub(crate) syntax: SyntaxToken, | ||
571 | } | ||
572 | impl std::fmt::Display for Coloncolon { | ||
573 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
574 | std::fmt::Display::fmt(&self.syntax, f) | ||
575 | } | ||
576 | } | ||
577 | impl AstToken for Coloncolon { | ||
578 | fn can_cast(kind: SyntaxKind) -> bool { kind == COLONCOLON } | ||
579 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
580 | if Self::can_cast(syntax.kind()) { | ||
581 | Some(Self { syntax }) | ||
582 | } else { | ||
583 | None | ||
584 | } | ||
585 | } | ||
586 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
587 | } | ||
588 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
589 | pub struct Eq { | ||
590 | pub(crate) syntax: SyntaxToken, | ||
591 | } | ||
592 | impl std::fmt::Display for Eq { | ||
593 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
594 | std::fmt::Display::fmt(&self.syntax, f) | ||
595 | } | ||
596 | } | ||
597 | impl AstToken for Eq { | ||
598 | fn can_cast(kind: SyntaxKind) -> bool { kind == EQ } | ||
599 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
600 | if Self::can_cast(syntax.kind()) { | ||
601 | Some(Self { syntax }) | ||
602 | } else { | ||
603 | None | ||
604 | } | ||
605 | } | ||
606 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
607 | } | ||
608 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
609 | pub struct Eqeq { | ||
610 | pub(crate) syntax: SyntaxToken, | ||
611 | } | ||
612 | impl std::fmt::Display for Eqeq { | ||
613 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
614 | std::fmt::Display::fmt(&self.syntax, f) | ||
615 | } | ||
616 | } | ||
617 | impl AstToken for Eqeq { | ||
618 | fn can_cast(kind: SyntaxKind) -> bool { kind == EQEQ } | ||
619 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
620 | if Self::can_cast(syntax.kind()) { | ||
621 | Some(Self { syntax }) | ||
622 | } else { | ||
623 | None | ||
624 | } | ||
625 | } | ||
626 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
627 | } | ||
628 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
629 | pub struct FatArrow { | ||
630 | pub(crate) syntax: SyntaxToken, | ||
631 | } | ||
632 | impl std::fmt::Display for FatArrow { | ||
633 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
634 | std::fmt::Display::fmt(&self.syntax, f) | ||
635 | } | ||
636 | } | ||
637 | impl AstToken for FatArrow { | ||
638 | fn can_cast(kind: SyntaxKind) -> bool { kind == FAT_ARROW } | ||
639 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
640 | if Self::can_cast(syntax.kind()) { | ||
641 | Some(Self { syntax }) | ||
642 | } else { | ||
643 | None | ||
644 | } | ||
645 | } | ||
646 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
647 | } | ||
648 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
649 | pub struct Excl { | ||
650 | pub(crate) syntax: SyntaxToken, | ||
651 | } | ||
652 | impl std::fmt::Display for Excl { | ||
653 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
654 | std::fmt::Display::fmt(&self.syntax, f) | ||
655 | } | ||
656 | } | ||
657 | impl AstToken for Excl { | ||
658 | fn can_cast(kind: SyntaxKind) -> bool { kind == EXCL } | ||
659 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
660 | if Self::can_cast(syntax.kind()) { | ||
661 | Some(Self { syntax }) | ||
662 | } else { | ||
663 | None | ||
664 | } | ||
665 | } | ||
666 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
667 | } | ||
668 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
669 | pub struct Neq { | ||
670 | pub(crate) syntax: SyntaxToken, | ||
671 | } | ||
672 | impl std::fmt::Display for Neq { | ||
673 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
674 | std::fmt::Display::fmt(&self.syntax, f) | ||
675 | } | ||
676 | } | ||
677 | impl AstToken for Neq { | ||
678 | fn can_cast(kind: SyntaxKind) -> bool { kind == NEQ } | ||
679 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
680 | if Self::can_cast(syntax.kind()) { | ||
681 | Some(Self { syntax }) | ||
682 | } else { | ||
683 | None | ||
684 | } | ||
685 | } | ||
686 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
687 | } | ||
688 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
689 | pub struct Minus { | ||
690 | pub(crate) syntax: SyntaxToken, | ||
691 | } | ||
692 | impl std::fmt::Display for Minus { | ||
693 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
694 | std::fmt::Display::fmt(&self.syntax, f) | ||
695 | } | ||
696 | } | ||
697 | impl AstToken for Minus { | ||
698 | fn can_cast(kind: SyntaxKind) -> bool { kind == MINUS } | ||
699 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
700 | if Self::can_cast(syntax.kind()) { | ||
701 | Some(Self { syntax }) | ||
702 | } else { | ||
703 | None | ||
704 | } | ||
705 | } | ||
706 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
707 | } | ||
708 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
709 | pub struct ThinArrow { | ||
710 | pub(crate) syntax: SyntaxToken, | ||
711 | } | ||
712 | impl std::fmt::Display for ThinArrow { | ||
713 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
714 | std::fmt::Display::fmt(&self.syntax, f) | ||
715 | } | ||
716 | } | ||
717 | impl AstToken for ThinArrow { | ||
718 | fn can_cast(kind: SyntaxKind) -> bool { kind == THIN_ARROW } | ||
719 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
720 | if Self::can_cast(syntax.kind()) { | ||
721 | Some(Self { syntax }) | ||
722 | } else { | ||
723 | None | ||
724 | } | ||
725 | } | ||
726 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
727 | } | ||
728 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
729 | pub struct Lteq { | ||
730 | pub(crate) syntax: SyntaxToken, | ||
731 | } | ||
732 | impl std::fmt::Display for Lteq { | ||
733 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
734 | std::fmt::Display::fmt(&self.syntax, f) | ||
735 | } | ||
736 | } | ||
737 | impl AstToken for Lteq { | ||
738 | fn can_cast(kind: SyntaxKind) -> bool { kind == LTEQ } | ||
739 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
740 | if Self::can_cast(syntax.kind()) { | ||
741 | Some(Self { syntax }) | ||
742 | } else { | ||
743 | None | ||
744 | } | ||
745 | } | ||
746 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
747 | } | ||
748 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
749 | pub struct Gteq { | ||
750 | pub(crate) syntax: SyntaxToken, | ||
751 | } | ||
752 | impl std::fmt::Display for Gteq { | ||
753 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
754 | std::fmt::Display::fmt(&self.syntax, f) | ||
755 | } | ||
756 | } | ||
757 | impl AstToken for Gteq { | ||
758 | fn can_cast(kind: SyntaxKind) -> bool { kind == GTEQ } | ||
759 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
760 | if Self::can_cast(syntax.kind()) { | ||
761 | Some(Self { syntax }) | ||
762 | } else { | ||
763 | None | ||
764 | } | ||
765 | } | ||
766 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
767 | } | ||
768 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
769 | pub struct Pluseq { | ||
770 | pub(crate) syntax: SyntaxToken, | ||
771 | } | ||
772 | impl std::fmt::Display for Pluseq { | ||
773 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
774 | std::fmt::Display::fmt(&self.syntax, f) | ||
775 | } | ||
776 | } | ||
777 | impl AstToken for Pluseq { | ||
778 | fn can_cast(kind: SyntaxKind) -> bool { kind == PLUSEQ } | ||
779 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
780 | if Self::can_cast(syntax.kind()) { | ||
781 | Some(Self { syntax }) | ||
782 | } else { | ||
783 | None | ||
784 | } | ||
785 | } | ||
786 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
787 | } | ||
788 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
789 | pub struct Minuseq { | ||
790 | pub(crate) syntax: SyntaxToken, | ||
791 | } | ||
792 | impl std::fmt::Display for Minuseq { | ||
793 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
794 | std::fmt::Display::fmt(&self.syntax, f) | ||
795 | } | ||
796 | } | ||
797 | impl AstToken for Minuseq { | ||
798 | fn can_cast(kind: SyntaxKind) -> bool { kind == MINUSEQ } | ||
799 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
800 | if Self::can_cast(syntax.kind()) { | ||
801 | Some(Self { syntax }) | ||
802 | } else { | ||
803 | None | ||
804 | } | ||
805 | } | ||
806 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
807 | } | ||
808 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
809 | pub struct Pipeeq { | ||
810 | pub(crate) syntax: SyntaxToken, | ||
811 | } | ||
812 | impl std::fmt::Display for Pipeeq { | ||
813 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
814 | std::fmt::Display::fmt(&self.syntax, f) | ||
815 | } | ||
816 | } | ||
817 | impl AstToken for Pipeeq { | ||
818 | fn can_cast(kind: SyntaxKind) -> bool { kind == PIPEEQ } | ||
819 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
820 | if Self::can_cast(syntax.kind()) { | ||
821 | Some(Self { syntax }) | ||
822 | } else { | ||
823 | None | ||
824 | } | ||
825 | } | ||
826 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
827 | } | ||
828 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
829 | pub struct Ampeq { | ||
830 | pub(crate) syntax: SyntaxToken, | ||
831 | } | ||
832 | impl std::fmt::Display for Ampeq { | ||
833 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
834 | std::fmt::Display::fmt(&self.syntax, f) | ||
835 | } | ||
836 | } | ||
837 | impl AstToken for Ampeq { | ||
838 | fn can_cast(kind: SyntaxKind) -> bool { kind == AMPEQ } | ||
839 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
840 | if Self::can_cast(syntax.kind()) { | ||
841 | Some(Self { syntax }) | ||
842 | } else { | ||
843 | None | ||
844 | } | ||
845 | } | ||
846 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
847 | } | ||
848 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
849 | pub struct Careteq { | ||
850 | pub(crate) syntax: SyntaxToken, | ||
851 | } | ||
852 | impl std::fmt::Display for Careteq { | ||
853 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
854 | std::fmt::Display::fmt(&self.syntax, f) | ||
855 | } | ||
856 | } | ||
857 | impl AstToken for Careteq { | ||
858 | fn can_cast(kind: SyntaxKind) -> bool { kind == CARETEQ } | ||
859 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
860 | if Self::can_cast(syntax.kind()) { | ||
861 | Some(Self { syntax }) | ||
862 | } else { | ||
863 | None | ||
864 | } | ||
865 | } | ||
866 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
867 | } | ||
868 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
869 | pub struct Slasheq { | ||
870 | pub(crate) syntax: SyntaxToken, | ||
871 | } | ||
872 | impl std::fmt::Display for Slasheq { | ||
873 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
874 | std::fmt::Display::fmt(&self.syntax, f) | ||
875 | } | ||
876 | } | ||
877 | impl AstToken for Slasheq { | ||
878 | fn can_cast(kind: SyntaxKind) -> bool { kind == SLASHEQ } | ||
879 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
880 | if Self::can_cast(syntax.kind()) { | ||
881 | Some(Self { syntax }) | ||
882 | } else { | ||
883 | None | ||
884 | } | ||
885 | } | ||
886 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
887 | } | ||
888 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
889 | pub struct Stareq { | ||
890 | pub(crate) syntax: SyntaxToken, | ||
891 | } | ||
892 | impl std::fmt::Display for Stareq { | ||
893 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
894 | std::fmt::Display::fmt(&self.syntax, f) | ||
895 | } | ||
896 | } | ||
897 | impl AstToken for Stareq { | ||
898 | fn can_cast(kind: SyntaxKind) -> bool { kind == STAREQ } | ||
899 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
900 | if Self::can_cast(syntax.kind()) { | ||
901 | Some(Self { syntax }) | ||
902 | } else { | ||
903 | None | ||
904 | } | ||
905 | } | ||
906 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
907 | } | ||
908 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
909 | pub struct Percenteq { | ||
910 | pub(crate) syntax: SyntaxToken, | ||
911 | } | ||
912 | impl std::fmt::Display for Percenteq { | ||
913 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
914 | std::fmt::Display::fmt(&self.syntax, f) | ||
915 | } | ||
916 | } | ||
917 | impl AstToken for Percenteq { | ||
918 | fn can_cast(kind: SyntaxKind) -> bool { kind == PERCENTEQ } | ||
919 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
920 | if Self::can_cast(syntax.kind()) { | ||
921 | Some(Self { syntax }) | ||
922 | } else { | ||
923 | None | ||
924 | } | ||
925 | } | ||
926 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
927 | } | ||
928 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
929 | pub struct Ampamp { | ||
930 | pub(crate) syntax: SyntaxToken, | ||
931 | } | ||
932 | impl std::fmt::Display for Ampamp { | ||
933 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
934 | std::fmt::Display::fmt(&self.syntax, f) | ||
935 | } | ||
936 | } | ||
937 | impl AstToken for Ampamp { | ||
938 | fn can_cast(kind: SyntaxKind) -> bool { kind == AMPAMP } | ||
939 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
940 | if Self::can_cast(syntax.kind()) { | ||
941 | Some(Self { syntax }) | ||
942 | } else { | ||
943 | None | ||
944 | } | ||
945 | } | ||
946 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
947 | } | ||
948 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
949 | pub struct Pipepipe { | ||
950 | pub(crate) syntax: SyntaxToken, | ||
951 | } | ||
952 | impl std::fmt::Display for Pipepipe { | ||
953 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
954 | std::fmt::Display::fmt(&self.syntax, f) | ||
955 | } | ||
956 | } | ||
957 | impl AstToken for Pipepipe { | ||
958 | fn can_cast(kind: SyntaxKind) -> bool { kind == PIPEPIPE } | ||
959 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
960 | if Self::can_cast(syntax.kind()) { | ||
961 | Some(Self { syntax }) | ||
962 | } else { | ||
963 | None | ||
964 | } | ||
965 | } | ||
966 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
967 | } | ||
968 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
969 | pub struct Shl { | ||
970 | pub(crate) syntax: SyntaxToken, | ||
971 | } | ||
972 | impl std::fmt::Display for Shl { | ||
973 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
974 | std::fmt::Display::fmt(&self.syntax, f) | ||
975 | } | ||
976 | } | ||
977 | impl AstToken for Shl { | ||
978 | fn can_cast(kind: SyntaxKind) -> bool { kind == SHL } | ||
979 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
980 | if Self::can_cast(syntax.kind()) { | ||
981 | Some(Self { syntax }) | ||
982 | } else { | ||
983 | None | ||
984 | } | ||
985 | } | ||
986 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
987 | } | ||
988 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
989 | pub struct Shr { | ||
990 | pub(crate) syntax: SyntaxToken, | ||
991 | } | ||
992 | impl std::fmt::Display for Shr { | ||
993 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
994 | std::fmt::Display::fmt(&self.syntax, f) | ||
995 | } | ||
996 | } | ||
997 | impl AstToken for Shr { | ||
998 | fn can_cast(kind: SyntaxKind) -> bool { kind == SHR } | ||
999 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1000 | if Self::can_cast(syntax.kind()) { | ||
1001 | Some(Self { syntax }) | ||
1002 | } else { | ||
1003 | None | ||
1004 | } | ||
1005 | } | ||
1006 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1007 | } | ||
1008 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1009 | pub struct Shleq { | ||
1010 | pub(crate) syntax: SyntaxToken, | ||
1011 | } | ||
1012 | impl std::fmt::Display for Shleq { | ||
1013 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1014 | std::fmt::Display::fmt(&self.syntax, f) | ||
1015 | } | ||
1016 | } | ||
1017 | impl AstToken for Shleq { | ||
1018 | fn can_cast(kind: SyntaxKind) -> bool { kind == SHLEQ } | ||
1019 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1020 | if Self::can_cast(syntax.kind()) { | ||
1021 | Some(Self { syntax }) | ||
1022 | } else { | ||
1023 | None | ||
1024 | } | ||
1025 | } | ||
1026 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1027 | } | ||
1028 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1029 | pub struct Shreq { | ||
1030 | pub(crate) syntax: SyntaxToken, | ||
1031 | } | ||
1032 | impl std::fmt::Display for Shreq { | ||
1033 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1034 | std::fmt::Display::fmt(&self.syntax, f) | ||
1035 | } | ||
1036 | } | ||
1037 | impl AstToken for Shreq { | ||
1038 | fn can_cast(kind: SyntaxKind) -> bool { kind == SHREQ } | ||
1039 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1040 | if Self::can_cast(syntax.kind()) { | ||
1041 | Some(Self { syntax }) | ||
1042 | } else { | ||
1043 | None | ||
1044 | } | ||
1045 | } | ||
1046 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1047 | } | ||
1048 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1049 | pub struct AsKw { | ||
1050 | pub(crate) syntax: SyntaxToken, | ||
1051 | } | ||
1052 | impl std::fmt::Display for AsKw { | ||
1053 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1054 | std::fmt::Display::fmt(&self.syntax, f) | ||
1055 | } | ||
1056 | } | ||
1057 | impl AstToken for AsKw { | ||
1058 | fn can_cast(kind: SyntaxKind) -> bool { kind == AS_KW } | ||
1059 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1060 | if Self::can_cast(syntax.kind()) { | ||
1061 | Some(Self { syntax }) | ||
1062 | } else { | ||
1063 | None | ||
1064 | } | ||
1065 | } | ||
1066 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1067 | } | ||
1068 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1069 | pub struct AsyncKw { | ||
1070 | pub(crate) syntax: SyntaxToken, | ||
1071 | } | ||
1072 | impl std::fmt::Display for AsyncKw { | ||
1073 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1074 | std::fmt::Display::fmt(&self.syntax, f) | ||
1075 | } | ||
1076 | } | ||
1077 | impl AstToken for AsyncKw { | ||
1078 | fn can_cast(kind: SyntaxKind) -> bool { kind == ASYNC_KW } | ||
1079 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1080 | if Self::can_cast(syntax.kind()) { | ||
1081 | Some(Self { syntax }) | ||
1082 | } else { | ||
1083 | None | ||
1084 | } | ||
1085 | } | ||
1086 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1087 | } | ||
1088 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1089 | pub struct AwaitKw { | ||
1090 | pub(crate) syntax: SyntaxToken, | ||
1091 | } | ||
1092 | impl std::fmt::Display for AwaitKw { | ||
1093 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1094 | std::fmt::Display::fmt(&self.syntax, f) | ||
1095 | } | ||
1096 | } | ||
1097 | impl AstToken for AwaitKw { | ||
1098 | fn can_cast(kind: SyntaxKind) -> bool { kind == AWAIT_KW } | ||
1099 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1100 | if Self::can_cast(syntax.kind()) { | ||
1101 | Some(Self { syntax }) | ||
1102 | } else { | ||
1103 | None | ||
1104 | } | ||
1105 | } | ||
1106 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1107 | } | ||
1108 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1109 | pub struct BoxKw { | ||
1110 | pub(crate) syntax: SyntaxToken, | ||
1111 | } | ||
1112 | impl std::fmt::Display for BoxKw { | ||
1113 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1114 | std::fmt::Display::fmt(&self.syntax, f) | ||
1115 | } | ||
1116 | } | ||
1117 | impl AstToken for BoxKw { | ||
1118 | fn can_cast(kind: SyntaxKind) -> bool { kind == BOX_KW } | ||
1119 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1120 | if Self::can_cast(syntax.kind()) { | ||
1121 | Some(Self { syntax }) | ||
1122 | } else { | ||
1123 | None | ||
1124 | } | ||
1125 | } | ||
1126 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1127 | } | ||
1128 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1129 | pub struct BreakKw { | ||
1130 | pub(crate) syntax: SyntaxToken, | ||
1131 | } | ||
1132 | impl std::fmt::Display for BreakKw { | ||
1133 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1134 | std::fmt::Display::fmt(&self.syntax, f) | ||
1135 | } | ||
1136 | } | ||
1137 | impl AstToken for BreakKw { | ||
1138 | fn can_cast(kind: SyntaxKind) -> bool { kind == BREAK_KW } | ||
1139 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1140 | if Self::can_cast(syntax.kind()) { | ||
1141 | Some(Self { syntax }) | ||
1142 | } else { | ||
1143 | None | ||
1144 | } | ||
1145 | } | ||
1146 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1147 | } | ||
1148 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1149 | pub struct ConstKw { | ||
1150 | pub(crate) syntax: SyntaxToken, | ||
1151 | } | ||
1152 | impl std::fmt::Display for ConstKw { | ||
1153 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1154 | std::fmt::Display::fmt(&self.syntax, f) | ||
1155 | } | ||
1156 | } | ||
1157 | impl AstToken for ConstKw { | ||
1158 | fn can_cast(kind: SyntaxKind) -> bool { kind == CONST_KW } | ||
1159 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1160 | if Self::can_cast(syntax.kind()) { | ||
1161 | Some(Self { syntax }) | ||
1162 | } else { | ||
1163 | None | ||
1164 | } | ||
1165 | } | ||
1166 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1167 | } | ||
1168 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1169 | pub struct ContinueKw { | ||
1170 | pub(crate) syntax: SyntaxToken, | ||
1171 | } | ||
1172 | impl std::fmt::Display for ContinueKw { | ||
1173 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1174 | std::fmt::Display::fmt(&self.syntax, f) | ||
1175 | } | ||
1176 | } | ||
1177 | impl AstToken for ContinueKw { | ||
1178 | fn can_cast(kind: SyntaxKind) -> bool { kind == CONTINUE_KW } | ||
1179 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1180 | if Self::can_cast(syntax.kind()) { | ||
1181 | Some(Self { syntax }) | ||
1182 | } else { | ||
1183 | None | ||
1184 | } | ||
1185 | } | ||
1186 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1187 | } | ||
1188 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1189 | pub struct CrateKw { | ||
1190 | pub(crate) syntax: SyntaxToken, | ||
1191 | } | ||
1192 | impl std::fmt::Display for CrateKw { | ||
1193 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1194 | std::fmt::Display::fmt(&self.syntax, f) | ||
1195 | } | ||
1196 | } | ||
1197 | impl AstToken for CrateKw { | ||
1198 | fn can_cast(kind: SyntaxKind) -> bool { kind == CRATE_KW } | ||
1199 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1200 | if Self::can_cast(syntax.kind()) { | ||
1201 | Some(Self { syntax }) | ||
1202 | } else { | ||
1203 | None | ||
1204 | } | ||
1205 | } | ||
1206 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1207 | } | ||
1208 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1209 | pub struct DynKw { | ||
1210 | pub(crate) syntax: SyntaxToken, | ||
1211 | } | ||
1212 | impl std::fmt::Display for DynKw { | ||
1213 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1214 | std::fmt::Display::fmt(&self.syntax, f) | ||
1215 | } | ||
1216 | } | ||
1217 | impl AstToken for DynKw { | ||
1218 | fn can_cast(kind: SyntaxKind) -> bool { kind == DYN_KW } | ||
1219 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1220 | if Self::can_cast(syntax.kind()) { | ||
1221 | Some(Self { syntax }) | ||
1222 | } else { | ||
1223 | None | ||
1224 | } | ||
1225 | } | ||
1226 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1227 | } | ||
1228 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1229 | pub struct ElseKw { | ||
1230 | pub(crate) syntax: SyntaxToken, | ||
1231 | } | ||
1232 | impl std::fmt::Display for ElseKw { | ||
1233 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1234 | std::fmt::Display::fmt(&self.syntax, f) | ||
1235 | } | ||
1236 | } | ||
1237 | impl AstToken for ElseKw { | ||
1238 | fn can_cast(kind: SyntaxKind) -> bool { kind == ELSE_KW } | ||
1239 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1240 | if Self::can_cast(syntax.kind()) { | ||
1241 | Some(Self { syntax }) | ||
1242 | } else { | ||
1243 | None | ||
1244 | } | ||
1245 | } | ||
1246 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1247 | } | ||
1248 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1249 | pub struct EnumKw { | ||
1250 | pub(crate) syntax: SyntaxToken, | ||
1251 | } | ||
1252 | impl std::fmt::Display for EnumKw { | ||
1253 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1254 | std::fmt::Display::fmt(&self.syntax, f) | ||
1255 | } | ||
1256 | } | ||
1257 | impl AstToken for EnumKw { | ||
1258 | fn can_cast(kind: SyntaxKind) -> bool { kind == ENUM_KW } | ||
1259 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1260 | if Self::can_cast(syntax.kind()) { | ||
1261 | Some(Self { syntax }) | ||
1262 | } else { | ||
1263 | None | ||
1264 | } | ||
1265 | } | ||
1266 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1267 | } | ||
1268 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1269 | pub struct ExternKw { | ||
1270 | pub(crate) syntax: SyntaxToken, | ||
1271 | } | ||
1272 | impl std::fmt::Display for ExternKw { | ||
1273 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1274 | std::fmt::Display::fmt(&self.syntax, f) | ||
1275 | } | ||
1276 | } | ||
1277 | impl AstToken for ExternKw { | ||
1278 | fn can_cast(kind: SyntaxKind) -> bool { kind == EXTERN_KW } | ||
1279 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1280 | if Self::can_cast(syntax.kind()) { | ||
1281 | Some(Self { syntax }) | ||
1282 | } else { | ||
1283 | None | ||
1284 | } | ||
1285 | } | ||
1286 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1287 | } | ||
1288 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1289 | pub struct FalseKw { | ||
1290 | pub(crate) syntax: SyntaxToken, | ||
1291 | } | ||
1292 | impl std::fmt::Display for FalseKw { | ||
1293 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1294 | std::fmt::Display::fmt(&self.syntax, f) | ||
1295 | } | ||
1296 | } | ||
1297 | impl AstToken for FalseKw { | ||
1298 | fn can_cast(kind: SyntaxKind) -> bool { kind == FALSE_KW } | ||
1299 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1300 | if Self::can_cast(syntax.kind()) { | ||
1301 | Some(Self { syntax }) | ||
1302 | } else { | ||
1303 | None | ||
1304 | } | ||
1305 | } | ||
1306 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1307 | } | ||
1308 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1309 | pub struct FnKw { | ||
1310 | pub(crate) syntax: SyntaxToken, | ||
1311 | } | ||
1312 | impl std::fmt::Display for FnKw { | ||
1313 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1314 | std::fmt::Display::fmt(&self.syntax, f) | ||
1315 | } | ||
1316 | } | ||
1317 | impl AstToken for FnKw { | ||
1318 | fn can_cast(kind: SyntaxKind) -> bool { kind == FN_KW } | ||
1319 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1320 | if Self::can_cast(syntax.kind()) { | ||
1321 | Some(Self { syntax }) | ||
1322 | } else { | ||
1323 | None | ||
1324 | } | ||
1325 | } | ||
1326 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1327 | } | ||
1328 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1329 | pub struct ForKw { | ||
1330 | pub(crate) syntax: SyntaxToken, | ||
1331 | } | ||
1332 | impl std::fmt::Display for ForKw { | ||
1333 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1334 | std::fmt::Display::fmt(&self.syntax, f) | ||
1335 | } | ||
1336 | } | ||
1337 | impl AstToken for ForKw { | ||
1338 | fn can_cast(kind: SyntaxKind) -> bool { kind == FOR_KW } | ||
1339 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1340 | if Self::can_cast(syntax.kind()) { | ||
1341 | Some(Self { syntax }) | ||
1342 | } else { | ||
1343 | None | ||
1344 | } | ||
1345 | } | ||
1346 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1347 | } | ||
1348 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1349 | pub struct IfKw { | ||
1350 | pub(crate) syntax: SyntaxToken, | ||
1351 | } | ||
1352 | impl std::fmt::Display for IfKw { | ||
1353 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1354 | std::fmt::Display::fmt(&self.syntax, f) | ||
1355 | } | ||
1356 | } | ||
1357 | impl AstToken for IfKw { | ||
1358 | fn can_cast(kind: SyntaxKind) -> bool { kind == IF_KW } | ||
1359 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1360 | if Self::can_cast(syntax.kind()) { | ||
1361 | Some(Self { syntax }) | ||
1362 | } else { | ||
1363 | None | ||
1364 | } | ||
1365 | } | ||
1366 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1367 | } | ||
1368 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1369 | pub struct ImplKw { | ||
1370 | pub(crate) syntax: SyntaxToken, | ||
1371 | } | ||
1372 | impl std::fmt::Display for ImplKw { | ||
1373 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1374 | std::fmt::Display::fmt(&self.syntax, f) | ||
1375 | } | ||
1376 | } | ||
1377 | impl AstToken for ImplKw { | ||
1378 | fn can_cast(kind: SyntaxKind) -> bool { kind == IMPL_KW } | ||
1379 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1380 | if Self::can_cast(syntax.kind()) { | ||
1381 | Some(Self { syntax }) | ||
1382 | } else { | ||
1383 | None | ||
1384 | } | ||
1385 | } | ||
1386 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1387 | } | ||
1388 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1389 | pub struct InKw { | ||
1390 | pub(crate) syntax: SyntaxToken, | ||
1391 | } | ||
1392 | impl std::fmt::Display for InKw { | ||
1393 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1394 | std::fmt::Display::fmt(&self.syntax, f) | ||
1395 | } | ||
1396 | } | ||
1397 | impl AstToken for InKw { | ||
1398 | fn can_cast(kind: SyntaxKind) -> bool { kind == IN_KW } | ||
1399 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1400 | if Self::can_cast(syntax.kind()) { | ||
1401 | Some(Self { syntax }) | ||
1402 | } else { | ||
1403 | None | ||
1404 | } | ||
1405 | } | ||
1406 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1407 | } | ||
1408 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1409 | pub struct LetKw { | ||
1410 | pub(crate) syntax: SyntaxToken, | ||
1411 | } | ||
1412 | impl std::fmt::Display for LetKw { | ||
1413 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1414 | std::fmt::Display::fmt(&self.syntax, f) | ||
1415 | } | ||
1416 | } | ||
1417 | impl AstToken for LetKw { | ||
1418 | fn can_cast(kind: SyntaxKind) -> bool { kind == LET_KW } | ||
1419 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1420 | if Self::can_cast(syntax.kind()) { | ||
1421 | Some(Self { syntax }) | ||
1422 | } else { | ||
1423 | None | ||
1424 | } | ||
1425 | } | ||
1426 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1427 | } | ||
1428 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1429 | pub struct LoopKw { | ||
1430 | pub(crate) syntax: SyntaxToken, | ||
1431 | } | ||
1432 | impl std::fmt::Display for LoopKw { | ||
1433 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1434 | std::fmt::Display::fmt(&self.syntax, f) | ||
1435 | } | ||
1436 | } | ||
1437 | impl AstToken for LoopKw { | ||
1438 | fn can_cast(kind: SyntaxKind) -> bool { kind == LOOP_KW } | ||
1439 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1440 | if Self::can_cast(syntax.kind()) { | ||
1441 | Some(Self { syntax }) | ||
1442 | } else { | ||
1443 | None | ||
1444 | } | ||
1445 | } | ||
1446 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1447 | } | ||
1448 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1449 | pub struct MacroKw { | ||
1450 | pub(crate) syntax: SyntaxToken, | ||
1451 | } | ||
1452 | impl std::fmt::Display for MacroKw { | ||
1453 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1454 | std::fmt::Display::fmt(&self.syntax, f) | ||
1455 | } | ||
1456 | } | ||
1457 | impl AstToken for MacroKw { | ||
1458 | fn can_cast(kind: SyntaxKind) -> bool { kind == MACRO_KW } | ||
1459 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1460 | if Self::can_cast(syntax.kind()) { | ||
1461 | Some(Self { syntax }) | ||
1462 | } else { | ||
1463 | None | ||
1464 | } | ||
1465 | } | ||
1466 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1467 | } | ||
1468 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1469 | pub struct MatchKw { | ||
1470 | pub(crate) syntax: SyntaxToken, | ||
1471 | } | ||
1472 | impl std::fmt::Display for MatchKw { | ||
1473 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1474 | std::fmt::Display::fmt(&self.syntax, f) | ||
1475 | } | ||
1476 | } | ||
1477 | impl AstToken for MatchKw { | ||
1478 | fn can_cast(kind: SyntaxKind) -> bool { kind == MATCH_KW } | ||
1479 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1480 | if Self::can_cast(syntax.kind()) { | ||
1481 | Some(Self { syntax }) | ||
1482 | } else { | ||
1483 | None | ||
1484 | } | ||
1485 | } | ||
1486 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1487 | } | ||
1488 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1489 | pub struct ModKw { | ||
1490 | pub(crate) syntax: SyntaxToken, | ||
1491 | } | ||
1492 | impl std::fmt::Display for ModKw { | ||
1493 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1494 | std::fmt::Display::fmt(&self.syntax, f) | ||
1495 | } | ||
1496 | } | ||
1497 | impl AstToken for ModKw { | ||
1498 | fn can_cast(kind: SyntaxKind) -> bool { kind == MOD_KW } | ||
1499 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1500 | if Self::can_cast(syntax.kind()) { | ||
1501 | Some(Self { syntax }) | ||
1502 | } else { | ||
1503 | None | ||
1504 | } | ||
1505 | } | ||
1506 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1507 | } | ||
1508 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1509 | pub struct MoveKw { | ||
1510 | pub(crate) syntax: SyntaxToken, | ||
1511 | } | ||
1512 | impl std::fmt::Display for MoveKw { | ||
1513 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1514 | std::fmt::Display::fmt(&self.syntax, f) | ||
1515 | } | ||
1516 | } | ||
1517 | impl AstToken for MoveKw { | ||
1518 | fn can_cast(kind: SyntaxKind) -> bool { kind == MOVE_KW } | ||
1519 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1520 | if Self::can_cast(syntax.kind()) { | ||
1521 | Some(Self { syntax }) | ||
1522 | } else { | ||
1523 | None | ||
1524 | } | ||
1525 | } | ||
1526 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1527 | } | ||
1528 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1529 | pub struct MutKw { | ||
1530 | pub(crate) syntax: SyntaxToken, | ||
1531 | } | ||
1532 | impl std::fmt::Display for MutKw { | ||
1533 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1534 | std::fmt::Display::fmt(&self.syntax, f) | ||
1535 | } | ||
1536 | } | ||
1537 | impl AstToken for MutKw { | ||
1538 | fn can_cast(kind: SyntaxKind) -> bool { kind == MUT_KW } | ||
1539 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1540 | if Self::can_cast(syntax.kind()) { | ||
1541 | Some(Self { syntax }) | ||
1542 | } else { | ||
1543 | None | ||
1544 | } | ||
1545 | } | ||
1546 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1547 | } | ||
1548 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1549 | pub struct PubKw { | ||
1550 | pub(crate) syntax: SyntaxToken, | ||
1551 | } | ||
1552 | impl std::fmt::Display for PubKw { | ||
1553 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1554 | std::fmt::Display::fmt(&self.syntax, f) | ||
1555 | } | ||
1556 | } | ||
1557 | impl AstToken for PubKw { | ||
1558 | fn can_cast(kind: SyntaxKind) -> bool { kind == PUB_KW } | ||
1559 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1560 | if Self::can_cast(syntax.kind()) { | ||
1561 | Some(Self { syntax }) | ||
1562 | } else { | ||
1563 | None | ||
1564 | } | ||
1565 | } | ||
1566 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1567 | } | ||
1568 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1569 | pub struct RefKw { | ||
1570 | pub(crate) syntax: SyntaxToken, | ||
1571 | } | ||
1572 | impl std::fmt::Display for RefKw { | ||
1573 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1574 | std::fmt::Display::fmt(&self.syntax, f) | ||
1575 | } | ||
1576 | } | ||
1577 | impl AstToken for RefKw { | ||
1578 | fn can_cast(kind: SyntaxKind) -> bool { kind == REF_KW } | ||
1579 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1580 | if Self::can_cast(syntax.kind()) { | ||
1581 | Some(Self { syntax }) | ||
1582 | } else { | ||
1583 | None | ||
1584 | } | ||
1585 | } | ||
1586 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1587 | } | ||
1588 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1589 | pub struct ReturnKw { | ||
1590 | pub(crate) syntax: SyntaxToken, | ||
1591 | } | ||
1592 | impl std::fmt::Display for ReturnKw { | ||
1593 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1594 | std::fmt::Display::fmt(&self.syntax, f) | ||
1595 | } | ||
1596 | } | ||
1597 | impl AstToken for ReturnKw { | ||
1598 | fn can_cast(kind: SyntaxKind) -> bool { kind == RETURN_KW } | ||
1599 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1600 | if Self::can_cast(syntax.kind()) { | ||
1601 | Some(Self { syntax }) | ||
1602 | } else { | ||
1603 | None | ||
1604 | } | ||
1605 | } | ||
1606 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1607 | } | ||
1608 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1609 | pub struct SelfKw { | ||
1610 | pub(crate) syntax: SyntaxToken, | ||
1611 | } | ||
1612 | impl std::fmt::Display for SelfKw { | ||
1613 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1614 | std::fmt::Display::fmt(&self.syntax, f) | ||
1615 | } | ||
1616 | } | ||
1617 | impl AstToken for SelfKw { | ||
1618 | fn can_cast(kind: SyntaxKind) -> bool { kind == SELF_KW } | ||
1619 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1620 | if Self::can_cast(syntax.kind()) { | ||
1621 | Some(Self { syntax }) | ||
1622 | } else { | ||
1623 | None | ||
1624 | } | ||
1625 | } | ||
1626 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1627 | } | ||
1628 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1629 | pub struct StaticKw { | ||
1630 | pub(crate) syntax: SyntaxToken, | ||
1631 | } | ||
1632 | impl std::fmt::Display for StaticKw { | ||
1633 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1634 | std::fmt::Display::fmt(&self.syntax, f) | ||
1635 | } | ||
1636 | } | ||
1637 | impl AstToken for StaticKw { | ||
1638 | fn can_cast(kind: SyntaxKind) -> bool { kind == STATIC_KW } | ||
1639 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1640 | if Self::can_cast(syntax.kind()) { | ||
1641 | Some(Self { syntax }) | ||
1642 | } else { | ||
1643 | None | ||
1644 | } | ||
1645 | } | ||
1646 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1647 | } | ||
1648 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1649 | pub struct StructKw { | ||
1650 | pub(crate) syntax: SyntaxToken, | ||
1651 | } | ||
1652 | impl std::fmt::Display for StructKw { | ||
1653 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1654 | std::fmt::Display::fmt(&self.syntax, f) | ||
1655 | } | ||
1656 | } | ||
1657 | impl AstToken for StructKw { | ||
1658 | fn can_cast(kind: SyntaxKind) -> bool { kind == STRUCT_KW } | ||
1659 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1660 | if Self::can_cast(syntax.kind()) { | ||
1661 | Some(Self { syntax }) | ||
1662 | } else { | ||
1663 | None | ||
1664 | } | ||
1665 | } | ||
1666 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1667 | } | ||
1668 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1669 | pub struct SuperKw { | ||
1670 | pub(crate) syntax: SyntaxToken, | ||
1671 | } | ||
1672 | impl std::fmt::Display for SuperKw { | ||
1673 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1674 | std::fmt::Display::fmt(&self.syntax, f) | ||
1675 | } | ||
1676 | } | ||
1677 | impl AstToken for SuperKw { | ||
1678 | fn can_cast(kind: SyntaxKind) -> bool { kind == SUPER_KW } | ||
1679 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1680 | if Self::can_cast(syntax.kind()) { | ||
1681 | Some(Self { syntax }) | ||
1682 | } else { | ||
1683 | None | ||
1684 | } | ||
1685 | } | ||
1686 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1687 | } | ||
1688 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1689 | pub struct TraitKw { | ||
1690 | pub(crate) syntax: SyntaxToken, | ||
1691 | } | ||
1692 | impl std::fmt::Display for TraitKw { | ||
1693 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1694 | std::fmt::Display::fmt(&self.syntax, f) | ||
1695 | } | ||
1696 | } | ||
1697 | impl AstToken for TraitKw { | ||
1698 | fn can_cast(kind: SyntaxKind) -> bool { kind == TRAIT_KW } | ||
1699 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1700 | if Self::can_cast(syntax.kind()) { | ||
1701 | Some(Self { syntax }) | ||
1702 | } else { | ||
1703 | None | ||
1704 | } | ||
1705 | } | ||
1706 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1707 | } | ||
1708 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1709 | pub struct TrueKw { | ||
1710 | pub(crate) syntax: SyntaxToken, | ||
1711 | } | ||
1712 | impl std::fmt::Display for TrueKw { | ||
1713 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1714 | std::fmt::Display::fmt(&self.syntax, f) | ||
1715 | } | ||
1716 | } | ||
1717 | impl AstToken for TrueKw { | ||
1718 | fn can_cast(kind: SyntaxKind) -> bool { kind == TRUE_KW } | ||
1719 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1720 | if Self::can_cast(syntax.kind()) { | ||
1721 | Some(Self { syntax }) | ||
1722 | } else { | ||
1723 | None | ||
1724 | } | ||
1725 | } | ||
1726 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1727 | } | ||
1728 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1729 | pub struct TryKw { | ||
1730 | pub(crate) syntax: SyntaxToken, | ||
1731 | } | ||
1732 | impl std::fmt::Display for TryKw { | ||
1733 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1734 | std::fmt::Display::fmt(&self.syntax, f) | ||
1735 | } | ||
1736 | } | ||
1737 | impl AstToken for TryKw { | ||
1738 | fn can_cast(kind: SyntaxKind) -> bool { kind == TRY_KW } | ||
1739 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1740 | if Self::can_cast(syntax.kind()) { | ||
1741 | Some(Self { syntax }) | ||
1742 | } else { | ||
1743 | None | ||
1744 | } | ||
1745 | } | ||
1746 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1747 | } | ||
1748 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1749 | pub struct TypeKw { | ||
1750 | pub(crate) syntax: SyntaxToken, | ||
1751 | } | ||
1752 | impl std::fmt::Display for TypeKw { | ||
1753 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1754 | std::fmt::Display::fmt(&self.syntax, f) | ||
1755 | } | ||
1756 | } | ||
1757 | impl AstToken for TypeKw { | ||
1758 | fn can_cast(kind: SyntaxKind) -> bool { kind == TYPE_KW } | ||
1759 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1760 | if Self::can_cast(syntax.kind()) { | ||
1761 | Some(Self { syntax }) | ||
1762 | } else { | ||
1763 | None | ||
1764 | } | ||
1765 | } | ||
1766 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1767 | } | ||
1768 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1769 | pub struct UnsafeKw { | ||
1770 | pub(crate) syntax: SyntaxToken, | ||
1771 | } | ||
1772 | impl std::fmt::Display for UnsafeKw { | ||
1773 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1774 | std::fmt::Display::fmt(&self.syntax, f) | ||
1775 | } | ||
1776 | } | ||
1777 | impl AstToken for UnsafeKw { | ||
1778 | fn can_cast(kind: SyntaxKind) -> bool { kind == UNSAFE_KW } | ||
1779 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1780 | if Self::can_cast(syntax.kind()) { | ||
1781 | Some(Self { syntax }) | ||
1782 | } else { | ||
1783 | None | ||
1784 | } | ||
1785 | } | ||
1786 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1787 | } | ||
1788 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1789 | pub struct UseKw { | ||
1790 | pub(crate) syntax: SyntaxToken, | ||
1791 | } | ||
1792 | impl std::fmt::Display for UseKw { | ||
1793 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1794 | std::fmt::Display::fmt(&self.syntax, f) | ||
1795 | } | ||
1796 | } | ||
1797 | impl AstToken for UseKw { | ||
1798 | fn can_cast(kind: SyntaxKind) -> bool { kind == USE_KW } | ||
1799 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1800 | if Self::can_cast(syntax.kind()) { | ||
1801 | Some(Self { syntax }) | ||
1802 | } else { | ||
1803 | None | ||
1804 | } | ||
1805 | } | ||
1806 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1807 | } | ||
1808 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1809 | pub struct WhereKw { | ||
1810 | pub(crate) syntax: SyntaxToken, | ||
1811 | } | ||
1812 | impl std::fmt::Display for WhereKw { | ||
1813 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1814 | std::fmt::Display::fmt(&self.syntax, f) | ||
1815 | } | ||
1816 | } | ||
1817 | impl AstToken for WhereKw { | ||
1818 | fn can_cast(kind: SyntaxKind) -> bool { kind == WHERE_KW } | ||
1819 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1820 | if Self::can_cast(syntax.kind()) { | ||
1821 | Some(Self { syntax }) | ||
1822 | } else { | ||
1823 | None | ||
1824 | } | ||
1825 | } | ||
1826 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1827 | } | ||
1828 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1829 | pub struct WhileKw { | ||
1830 | pub(crate) syntax: SyntaxToken, | ||
1831 | } | ||
1832 | impl std::fmt::Display for WhileKw { | ||
1833 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1834 | std::fmt::Display::fmt(&self.syntax, f) | ||
1835 | } | ||
1836 | } | ||
1837 | impl AstToken for WhileKw { | ||
1838 | fn can_cast(kind: SyntaxKind) -> bool { kind == WHILE_KW } | ||
1839 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1840 | if Self::can_cast(syntax.kind()) { | ||
1841 | Some(Self { syntax }) | ||
1842 | } else { | ||
1843 | None | ||
1844 | } | ||
1845 | } | ||
1846 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1847 | } | ||
1848 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1849 | pub struct AutoKw { | ||
1850 | pub(crate) syntax: SyntaxToken, | ||
1851 | } | ||
1852 | impl std::fmt::Display for AutoKw { | ||
1853 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1854 | std::fmt::Display::fmt(&self.syntax, f) | ||
1855 | } | ||
1856 | } | ||
1857 | impl AstToken for AutoKw { | ||
1858 | fn can_cast(kind: SyntaxKind) -> bool { kind == AUTO_KW } | ||
1859 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1860 | if Self::can_cast(syntax.kind()) { | ||
1861 | Some(Self { syntax }) | ||
1862 | } else { | ||
1863 | None | ||
1864 | } | ||
1865 | } | ||
1866 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1867 | } | ||
1868 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1869 | pub struct DefaultKw { | ||
1870 | pub(crate) syntax: SyntaxToken, | ||
1871 | } | ||
1872 | impl std::fmt::Display for DefaultKw { | ||
1873 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1874 | std::fmt::Display::fmt(&self.syntax, f) | ||
1875 | } | ||
1876 | } | ||
1877 | impl AstToken for DefaultKw { | ||
1878 | fn can_cast(kind: SyntaxKind) -> bool { kind == DEFAULT_KW } | ||
1879 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1880 | if Self::can_cast(syntax.kind()) { | ||
1881 | Some(Self { syntax }) | ||
1882 | } else { | ||
1883 | None | ||
1884 | } | ||
1885 | } | ||
1886 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1887 | } | ||
1888 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1889 | pub struct ExistentialKw { | ||
1890 | pub(crate) syntax: SyntaxToken, | ||
1891 | } | ||
1892 | impl std::fmt::Display for ExistentialKw { | ||
1893 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1894 | std::fmt::Display::fmt(&self.syntax, f) | ||
1895 | } | ||
1896 | } | ||
1897 | impl AstToken for ExistentialKw { | ||
1898 | fn can_cast(kind: SyntaxKind) -> bool { kind == EXISTENTIAL_KW } | ||
1899 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1900 | if Self::can_cast(syntax.kind()) { | ||
1901 | Some(Self { syntax }) | ||
1902 | } else { | ||
1903 | None | ||
1904 | } | ||
1905 | } | ||
1906 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1907 | } | ||
1908 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1909 | pub struct UnionKw { | ||
1910 | pub(crate) syntax: SyntaxToken, | ||
1911 | } | ||
1912 | impl std::fmt::Display for UnionKw { | ||
1913 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1914 | std::fmt::Display::fmt(&self.syntax, f) | ||
1915 | } | ||
1916 | } | ||
1917 | impl AstToken for UnionKw { | ||
1918 | fn can_cast(kind: SyntaxKind) -> bool { kind == UNION_KW } | ||
1919 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1920 | if Self::can_cast(syntax.kind()) { | ||
1921 | Some(Self { syntax }) | ||
1922 | } else { | ||
1923 | None | ||
1924 | } | ||
1925 | } | ||
1926 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1927 | } | ||
1928 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1929 | pub struct RawKw { | ||
1930 | pub(crate) syntax: SyntaxToken, | ||
1931 | } | ||
1932 | impl std::fmt::Display for RawKw { | ||
1933 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1934 | std::fmt::Display::fmt(&self.syntax, f) | ||
1935 | } | ||
1936 | } | ||
1937 | impl AstToken for RawKw { | ||
1938 | fn can_cast(kind: SyntaxKind) -> bool { kind == RAW_KW } | ||
1939 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1940 | if Self::can_cast(syntax.kind()) { | ||
1941 | Some(Self { syntax }) | ||
1942 | } else { | ||
1943 | None | ||
1944 | } | ||
1945 | } | ||
1946 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1947 | } | ||
1948 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1949 | pub struct IntNumber { | ||
1950 | pub(crate) syntax: SyntaxToken, | ||
1951 | } | ||
1952 | impl std::fmt::Display for IntNumber { | ||
1953 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1954 | std::fmt::Display::fmt(&self.syntax, f) | ||
1955 | } | ||
1956 | } | ||
1957 | impl AstToken for IntNumber { | ||
1958 | fn can_cast(kind: SyntaxKind) -> bool { kind == INT_NUMBER } | ||
1959 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1960 | if Self::can_cast(syntax.kind()) { | ||
1961 | Some(Self { syntax }) | ||
1962 | } else { | ||
1963 | None | ||
1964 | } | ||
1965 | } | ||
1966 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1967 | } | ||
1968 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1969 | pub struct FloatNumber { | ||
1970 | pub(crate) syntax: SyntaxToken, | ||
1971 | } | ||
1972 | impl std::fmt::Display for FloatNumber { | ||
1973 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1974 | std::fmt::Display::fmt(&self.syntax, f) | ||
1975 | } | ||
1976 | } | ||
1977 | impl AstToken for FloatNumber { | ||
1978 | fn can_cast(kind: SyntaxKind) -> bool { kind == FLOAT_NUMBER } | ||
1979 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
1980 | if Self::can_cast(syntax.kind()) { | ||
1981 | Some(Self { syntax }) | ||
1982 | } else { | ||
1983 | None | ||
1984 | } | ||
1985 | } | ||
1986 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
1987 | } | ||
1988 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
1989 | pub struct Char { | ||
1990 | pub(crate) syntax: SyntaxToken, | ||
1991 | } | ||
1992 | impl std::fmt::Display for Char { | ||
1993 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
1994 | std::fmt::Display::fmt(&self.syntax, f) | ||
1995 | } | ||
1996 | } | ||
1997 | impl AstToken for Char { | ||
1998 | fn can_cast(kind: SyntaxKind) -> bool { kind == CHAR } | ||
1999 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2000 | if Self::can_cast(syntax.kind()) { | ||
2001 | Some(Self { syntax }) | ||
2002 | } else { | ||
2003 | None | ||
2004 | } | ||
2005 | } | ||
2006 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2007 | } | ||
2008 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2009 | pub struct Byte { | ||
2010 | pub(crate) syntax: SyntaxToken, | ||
2011 | } | ||
2012 | impl std::fmt::Display for Byte { | ||
2013 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2014 | std::fmt::Display::fmt(&self.syntax, f) | ||
2015 | } | ||
2016 | } | ||
2017 | impl AstToken for Byte { | ||
2018 | fn can_cast(kind: SyntaxKind) -> bool { kind == BYTE } | ||
2019 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2020 | if Self::can_cast(syntax.kind()) { | ||
2021 | Some(Self { syntax }) | ||
2022 | } else { | ||
2023 | None | ||
2024 | } | ||
2025 | } | ||
2026 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2027 | } | ||
2028 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2029 | pub struct String { | ||
2030 | pub(crate) syntax: SyntaxToken, | ||
2031 | } | ||
2032 | impl std::fmt::Display for String { | ||
2033 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2034 | std::fmt::Display::fmt(&self.syntax, f) | ||
2035 | } | ||
2036 | } | ||
2037 | impl AstToken for String { | ||
2038 | fn can_cast(kind: SyntaxKind) -> bool { kind == STRING } | ||
2039 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2040 | if Self::can_cast(syntax.kind()) { | ||
2041 | Some(Self { syntax }) | ||
2042 | } else { | ||
2043 | None | ||
2044 | } | ||
2045 | } | ||
2046 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2047 | } | ||
2048 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2049 | pub struct RawString { | ||
2050 | pub(crate) syntax: SyntaxToken, | ||
2051 | } | ||
2052 | impl std::fmt::Display for RawString { | ||
2053 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2054 | std::fmt::Display::fmt(&self.syntax, f) | ||
2055 | } | ||
2056 | } | ||
2057 | impl AstToken for RawString { | ||
2058 | fn can_cast(kind: SyntaxKind) -> bool { kind == RAW_STRING } | ||
2059 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2060 | if Self::can_cast(syntax.kind()) { | ||
2061 | Some(Self { syntax }) | ||
2062 | } else { | ||
2063 | None | ||
2064 | } | ||
2065 | } | ||
2066 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2067 | } | ||
2068 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2069 | pub struct ByteString { | ||
2070 | pub(crate) syntax: SyntaxToken, | ||
2071 | } | ||
2072 | impl std::fmt::Display for ByteString { | ||
2073 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2074 | std::fmt::Display::fmt(&self.syntax, f) | ||
2075 | } | ||
2076 | } | ||
2077 | impl AstToken for ByteString { | ||
2078 | fn can_cast(kind: SyntaxKind) -> bool { kind == BYTE_STRING } | ||
2079 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2080 | if Self::can_cast(syntax.kind()) { | ||
2081 | Some(Self { syntax }) | ||
2082 | } else { | ||
2083 | None | ||
2084 | } | ||
2085 | } | ||
2086 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2087 | } | ||
2088 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2089 | pub struct RawByteString { | ||
2090 | pub(crate) syntax: SyntaxToken, | ||
2091 | } | ||
2092 | impl std::fmt::Display for RawByteString { | ||
2093 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2094 | std::fmt::Display::fmt(&self.syntax, f) | ||
2095 | } | ||
2096 | } | ||
2097 | impl AstToken for RawByteString { | ||
2098 | fn can_cast(kind: SyntaxKind) -> bool { kind == RAW_BYTE_STRING } | ||
2099 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2100 | if Self::can_cast(syntax.kind()) { | ||
2101 | Some(Self { syntax }) | ||
2102 | } else { | ||
2103 | None | ||
2104 | } | ||
2105 | } | ||
2106 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2107 | } | ||
2108 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2109 | pub struct Error { | ||
2110 | pub(crate) syntax: SyntaxToken, | ||
2111 | } | ||
2112 | impl std::fmt::Display for Error { | ||
2113 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2114 | std::fmt::Display::fmt(&self.syntax, f) | ||
2115 | } | ||
2116 | } | ||
2117 | impl AstToken for Error { | ||
2118 | fn can_cast(kind: SyntaxKind) -> bool { kind == ERROR } | ||
2119 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2120 | if Self::can_cast(syntax.kind()) { | ||
2121 | Some(Self { syntax }) | ||
2122 | } else { | ||
2123 | None | ||
2124 | } | ||
2125 | } | ||
2126 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2127 | } | ||
2128 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2129 | pub struct Ident { | ||
2130 | pub(crate) syntax: SyntaxToken, | ||
2131 | } | ||
2132 | impl std::fmt::Display for Ident { | ||
2133 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2134 | std::fmt::Display::fmt(&self.syntax, f) | ||
2135 | } | ||
2136 | } | ||
2137 | impl AstToken for Ident { | ||
2138 | fn can_cast(kind: SyntaxKind) -> bool { kind == IDENT } | ||
2139 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2140 | if Self::can_cast(syntax.kind()) { | ||
2141 | Some(Self { syntax }) | ||
2142 | } else { | ||
2143 | None | ||
2144 | } | ||
2145 | } | ||
2146 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2147 | } | ||
2148 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2149 | pub struct Whitespace { | ||
2150 | pub(crate) syntax: SyntaxToken, | ||
2151 | } | ||
2152 | impl std::fmt::Display for Whitespace { | ||
2153 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2154 | std::fmt::Display::fmt(&self.syntax, f) | ||
2155 | } | ||
2156 | } | ||
2157 | impl AstToken for Whitespace { | ||
2158 | fn can_cast(kind: SyntaxKind) -> bool { kind == WHITESPACE } | ||
2159 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2160 | if Self::can_cast(syntax.kind()) { | ||
2161 | Some(Self { syntax }) | ||
2162 | } else { | ||
2163 | None | ||
2164 | } | ||
2165 | } | ||
2166 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2167 | } | ||
2168 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2169 | pub struct Lifetime { | ||
2170 | pub(crate) syntax: SyntaxToken, | ||
2171 | } | ||
2172 | impl std::fmt::Display for Lifetime { | ||
2173 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2174 | std::fmt::Display::fmt(&self.syntax, f) | ||
2175 | } | ||
2176 | } | ||
2177 | impl AstToken for Lifetime { | ||
2178 | fn can_cast(kind: SyntaxKind) -> bool { kind == LIFETIME } | ||
2179 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2180 | if Self::can_cast(syntax.kind()) { | ||
2181 | Some(Self { syntax }) | ||
2182 | } else { | ||
2183 | None | ||
2184 | } | ||
2185 | } | ||
2186 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2187 | } | ||
2188 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2189 | pub struct Comment { | ||
2190 | pub(crate) syntax: SyntaxToken, | ||
2191 | } | ||
2192 | impl std::fmt::Display for Comment { | ||
2193 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2194 | std::fmt::Display::fmt(&self.syntax, f) | ||
2195 | } | ||
2196 | } | ||
2197 | impl AstToken for Comment { | ||
2198 | fn can_cast(kind: SyntaxKind) -> bool { kind == COMMENT } | ||
2199 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2200 | if Self::can_cast(syntax.kind()) { | ||
2201 | Some(Self { syntax }) | ||
2202 | } else { | ||
2203 | None | ||
2204 | } | ||
2205 | } | ||
2206 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2207 | } | ||
2208 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2209 | pub struct Shebang { | ||
2210 | pub(crate) syntax: SyntaxToken, | ||
2211 | } | ||
2212 | impl std::fmt::Display for Shebang { | ||
2213 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2214 | std::fmt::Display::fmt(&self.syntax, f) | ||
2215 | } | ||
2216 | } | ||
2217 | impl AstToken for Shebang { | ||
2218 | fn can_cast(kind: SyntaxKind) -> bool { kind == SHEBANG } | ||
2219 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2220 | if Self::can_cast(syntax.kind()) { | ||
2221 | Some(Self { syntax }) | ||
2222 | } else { | ||
2223 | None | ||
2224 | } | ||
2225 | } | ||
2226 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2227 | } | ||
2228 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2229 | pub struct LDollar { | ||
2230 | pub(crate) syntax: SyntaxToken, | ||
2231 | } | ||
2232 | impl std::fmt::Display for LDollar { | ||
2233 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2234 | std::fmt::Display::fmt(&self.syntax, f) | ||
2235 | } | ||
2236 | } | ||
2237 | impl AstToken for LDollar { | ||
2238 | fn can_cast(kind: SyntaxKind) -> bool { kind == L_DOLLAR } | ||
2239 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2240 | if Self::can_cast(syntax.kind()) { | ||
2241 | Some(Self { syntax }) | ||
2242 | } else { | ||
2243 | None | ||
2244 | } | ||
2245 | } | ||
2246 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2247 | } | ||
2248 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2249 | pub struct RDollar { | ||
2250 | pub(crate) syntax: SyntaxToken, | ||
2251 | } | ||
2252 | impl std::fmt::Display for RDollar { | ||
2253 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2254 | std::fmt::Display::fmt(&self.syntax, f) | ||
2255 | } | ||
2256 | } | ||
2257 | impl AstToken for RDollar { | ||
2258 | fn can_cast(kind: SyntaxKind) -> bool { kind == R_DOLLAR } | ||
2259 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2260 | if Self::can_cast(syntax.kind()) { | ||
2261 | Some(Self { syntax }) | ||
2262 | } else { | ||
2263 | None | ||
2264 | } | ||
2265 | } | ||
2266 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
2267 | } | ||
2268 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2269 | pub enum LeftDelimiter { | ||
2270 | LParen(LParen), | ||
2271 | LBrack(LBrack), | ||
2272 | LCurly(LCurly), | ||
2273 | } | ||
2274 | impl From<LParen> for LeftDelimiter { | ||
2275 | fn from(node: LParen) -> LeftDelimiter { LeftDelimiter::LParen(node) } | ||
2276 | } | ||
2277 | impl From<LBrack> for LeftDelimiter { | ||
2278 | fn from(node: LBrack) -> LeftDelimiter { LeftDelimiter::LBrack(node) } | ||
2279 | } | ||
2280 | impl From<LCurly> for LeftDelimiter { | ||
2281 | fn from(node: LCurly) -> LeftDelimiter { LeftDelimiter::LCurly(node) } | ||
2282 | } | ||
2283 | impl std::fmt::Display for LeftDelimiter { | ||
2284 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2285 | std::fmt::Display::fmt(self.syntax(), f) | ||
2286 | } | ||
2287 | } | ||
2288 | impl AstToken for LeftDelimiter { | ||
2289 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2290 | match kind { | ||
2291 | L_PAREN | L_BRACK | L_CURLY => true, | ||
2292 | _ => false, | ||
2293 | } | ||
2294 | } | ||
2295 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2296 | let res = match syntax.kind() { | ||
2297 | L_PAREN => LeftDelimiter::LParen(LParen { syntax }), | ||
2298 | L_BRACK => LeftDelimiter::LBrack(LBrack { syntax }), | ||
2299 | L_CURLY => LeftDelimiter::LCurly(LCurly { syntax }), | ||
2300 | _ => return None, | ||
2301 | }; | ||
2302 | Some(res) | ||
2303 | } | ||
2304 | fn syntax(&self) -> &SyntaxToken { | ||
2305 | match self { | ||
2306 | LeftDelimiter::LParen(it) => &it.syntax, | ||
2307 | LeftDelimiter::LBrack(it) => &it.syntax, | ||
2308 | LeftDelimiter::LCurly(it) => &it.syntax, | ||
2309 | } | ||
2310 | } | ||
2311 | } | ||
2312 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2313 | pub enum RightDelimiter { | ||
2314 | RParen(RParen), | ||
2315 | RBrack(RBrack), | ||
2316 | RCurly(RCurly), | ||
2317 | } | ||
2318 | impl From<RParen> for RightDelimiter { | ||
2319 | fn from(node: RParen) -> RightDelimiter { RightDelimiter::RParen(node) } | ||
2320 | } | ||
2321 | impl From<RBrack> for RightDelimiter { | ||
2322 | fn from(node: RBrack) -> RightDelimiter { RightDelimiter::RBrack(node) } | ||
2323 | } | ||
2324 | impl From<RCurly> for RightDelimiter { | ||
2325 | fn from(node: RCurly) -> RightDelimiter { RightDelimiter::RCurly(node) } | ||
2326 | } | ||
2327 | impl std::fmt::Display for RightDelimiter { | ||
2328 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2329 | std::fmt::Display::fmt(self.syntax(), f) | ||
2330 | } | ||
2331 | } | ||
2332 | impl AstToken for RightDelimiter { | ||
2333 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2334 | match kind { | ||
2335 | R_PAREN | R_BRACK | R_CURLY => true, | ||
2336 | _ => false, | ||
2337 | } | ||
2338 | } | ||
2339 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2340 | let res = match syntax.kind() { | ||
2341 | R_PAREN => RightDelimiter::RParen(RParen { syntax }), | ||
2342 | R_BRACK => RightDelimiter::RBrack(RBrack { syntax }), | ||
2343 | R_CURLY => RightDelimiter::RCurly(RCurly { syntax }), | ||
2344 | _ => return None, | ||
2345 | }; | ||
2346 | Some(res) | ||
2347 | } | ||
2348 | fn syntax(&self) -> &SyntaxToken { | ||
2349 | match self { | ||
2350 | RightDelimiter::RParen(it) => &it.syntax, | ||
2351 | RightDelimiter::RBrack(it) => &it.syntax, | ||
2352 | RightDelimiter::RCurly(it) => &it.syntax, | ||
2353 | } | ||
2354 | } | ||
2355 | } | ||
2356 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2357 | pub enum RangeSeparator { | ||
2358 | Dotdot(Dotdot), | ||
2359 | Dotdotdot(Dotdotdot), | ||
2360 | Dotdoteq(Dotdoteq), | ||
2361 | } | ||
2362 | impl From<Dotdot> for RangeSeparator { | ||
2363 | fn from(node: Dotdot) -> RangeSeparator { RangeSeparator::Dotdot(node) } | ||
2364 | } | ||
2365 | impl From<Dotdotdot> for RangeSeparator { | ||
2366 | fn from(node: Dotdotdot) -> RangeSeparator { RangeSeparator::Dotdotdot(node) } | ||
2367 | } | ||
2368 | impl From<Dotdoteq> for RangeSeparator { | ||
2369 | fn from(node: Dotdoteq) -> RangeSeparator { RangeSeparator::Dotdoteq(node) } | ||
2370 | } | ||
2371 | impl std::fmt::Display for RangeSeparator { | ||
2372 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2373 | std::fmt::Display::fmt(self.syntax(), f) | ||
2374 | } | ||
2375 | } | ||
2376 | impl AstToken for RangeSeparator { | ||
2377 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2378 | match kind { | ||
2379 | DOTDOT | DOTDOTDOT | DOTDOTEQ => true, | ||
2380 | _ => false, | ||
2381 | } | ||
2382 | } | ||
2383 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2384 | let res = match syntax.kind() { | ||
2385 | DOTDOT => RangeSeparator::Dotdot(Dotdot { syntax }), | ||
2386 | DOTDOTDOT => RangeSeparator::Dotdotdot(Dotdotdot { syntax }), | ||
2387 | DOTDOTEQ => RangeSeparator::Dotdoteq(Dotdoteq { syntax }), | ||
2388 | _ => return None, | ||
2389 | }; | ||
2390 | Some(res) | ||
2391 | } | ||
2392 | fn syntax(&self) -> &SyntaxToken { | ||
2393 | match self { | ||
2394 | RangeSeparator::Dotdot(it) => &it.syntax, | ||
2395 | RangeSeparator::Dotdotdot(it) => &it.syntax, | ||
2396 | RangeSeparator::Dotdoteq(it) => &it.syntax, | ||
2397 | } | ||
2398 | } | ||
2399 | } | ||
2400 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2401 | pub enum BinOp { | ||
2402 | Pipepipe(Pipepipe), | ||
2403 | Ampamp(Ampamp), | ||
2404 | Eqeq(Eqeq), | ||
2405 | Neq(Neq), | ||
2406 | Lteq(Lteq), | ||
2407 | Gteq(Gteq), | ||
2408 | LAngle(LAngle), | ||
2409 | RAngle(RAngle), | ||
2410 | Plus(Plus), | ||
2411 | Star(Star), | ||
2412 | Minus(Minus), | ||
2413 | Slash(Slash), | ||
2414 | Percent(Percent), | ||
2415 | Shl(Shl), | ||
2416 | Shr(Shr), | ||
2417 | Caret(Caret), | ||
2418 | Pipe(Pipe), | ||
2419 | Amp(Amp), | ||
2420 | Eq(Eq), | ||
2421 | Pluseq(Pluseq), | ||
2422 | Slasheq(Slasheq), | ||
2423 | Stareq(Stareq), | ||
2424 | Percenteq(Percenteq), | ||
2425 | Shreq(Shreq), | ||
2426 | Shleq(Shleq), | ||
2427 | Minuseq(Minuseq), | ||
2428 | Pipeeq(Pipeeq), | ||
2429 | Ampeq(Ampeq), | ||
2430 | Careteq(Careteq), | ||
2431 | } | ||
2432 | impl From<Pipepipe> for BinOp { | ||
2433 | fn from(node: Pipepipe) -> BinOp { BinOp::Pipepipe(node) } | ||
2434 | } | ||
2435 | impl From<Ampamp> for BinOp { | ||
2436 | fn from(node: Ampamp) -> BinOp { BinOp::Ampamp(node) } | ||
2437 | } | ||
2438 | impl From<Eqeq> for BinOp { | ||
2439 | fn from(node: Eqeq) -> BinOp { BinOp::Eqeq(node) } | ||
2440 | } | ||
2441 | impl From<Neq> for BinOp { | ||
2442 | fn from(node: Neq) -> BinOp { BinOp::Neq(node) } | ||
2443 | } | ||
2444 | impl From<Lteq> for BinOp { | ||
2445 | fn from(node: Lteq) -> BinOp { BinOp::Lteq(node) } | ||
2446 | } | ||
2447 | impl From<Gteq> for BinOp { | ||
2448 | fn from(node: Gteq) -> BinOp { BinOp::Gteq(node) } | ||
2449 | } | ||
2450 | impl From<LAngle> for BinOp { | ||
2451 | fn from(node: LAngle) -> BinOp { BinOp::LAngle(node) } | ||
2452 | } | ||
2453 | impl From<RAngle> for BinOp { | ||
2454 | fn from(node: RAngle) -> BinOp { BinOp::RAngle(node) } | ||
2455 | } | ||
2456 | impl From<Plus> for BinOp { | ||
2457 | fn from(node: Plus) -> BinOp { BinOp::Plus(node) } | ||
2458 | } | ||
2459 | impl From<Star> for BinOp { | ||
2460 | fn from(node: Star) -> BinOp { BinOp::Star(node) } | ||
2461 | } | ||
2462 | impl From<Minus> for BinOp { | ||
2463 | fn from(node: Minus) -> BinOp { BinOp::Minus(node) } | ||
2464 | } | ||
2465 | impl From<Slash> for BinOp { | ||
2466 | fn from(node: Slash) -> BinOp { BinOp::Slash(node) } | ||
2467 | } | ||
2468 | impl From<Percent> for BinOp { | ||
2469 | fn from(node: Percent) -> BinOp { BinOp::Percent(node) } | ||
2470 | } | ||
2471 | impl From<Shl> for BinOp { | ||
2472 | fn from(node: Shl) -> BinOp { BinOp::Shl(node) } | ||
2473 | } | ||
2474 | impl From<Shr> for BinOp { | ||
2475 | fn from(node: Shr) -> BinOp { BinOp::Shr(node) } | ||
2476 | } | ||
2477 | impl From<Caret> for BinOp { | ||
2478 | fn from(node: Caret) -> BinOp { BinOp::Caret(node) } | ||
2479 | } | ||
2480 | impl From<Pipe> for BinOp { | ||
2481 | fn from(node: Pipe) -> BinOp { BinOp::Pipe(node) } | ||
2482 | } | ||
2483 | impl From<Amp> for BinOp { | ||
2484 | fn from(node: Amp) -> BinOp { BinOp::Amp(node) } | ||
2485 | } | ||
2486 | impl From<Eq> for BinOp { | ||
2487 | fn from(node: Eq) -> BinOp { BinOp::Eq(node) } | ||
2488 | } | ||
2489 | impl From<Pluseq> for BinOp { | ||
2490 | fn from(node: Pluseq) -> BinOp { BinOp::Pluseq(node) } | ||
2491 | } | ||
2492 | impl From<Slasheq> for BinOp { | ||
2493 | fn from(node: Slasheq) -> BinOp { BinOp::Slasheq(node) } | ||
2494 | } | ||
2495 | impl From<Stareq> for BinOp { | ||
2496 | fn from(node: Stareq) -> BinOp { BinOp::Stareq(node) } | ||
2497 | } | ||
2498 | impl From<Percenteq> for BinOp { | ||
2499 | fn from(node: Percenteq) -> BinOp { BinOp::Percenteq(node) } | ||
2500 | } | ||
2501 | impl From<Shreq> for BinOp { | ||
2502 | fn from(node: Shreq) -> BinOp { BinOp::Shreq(node) } | ||
2503 | } | ||
2504 | impl From<Shleq> for BinOp { | ||
2505 | fn from(node: Shleq) -> BinOp { BinOp::Shleq(node) } | ||
2506 | } | ||
2507 | impl From<Minuseq> for BinOp { | ||
2508 | fn from(node: Minuseq) -> BinOp { BinOp::Minuseq(node) } | ||
2509 | } | ||
2510 | impl From<Pipeeq> for BinOp { | ||
2511 | fn from(node: Pipeeq) -> BinOp { BinOp::Pipeeq(node) } | ||
2512 | } | ||
2513 | impl From<Ampeq> for BinOp { | ||
2514 | fn from(node: Ampeq) -> BinOp { BinOp::Ampeq(node) } | ||
2515 | } | ||
2516 | impl From<Careteq> for BinOp { | ||
2517 | fn from(node: Careteq) -> BinOp { BinOp::Careteq(node) } | ||
2518 | } | ||
2519 | impl std::fmt::Display for BinOp { | ||
2520 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2521 | std::fmt::Display::fmt(self.syntax(), f) | ||
2522 | } | ||
2523 | } | ||
2524 | impl AstToken for BinOp { | ||
2525 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2526 | match kind { | ||
2527 | PIPEPIPE | AMPAMP | EQEQ | NEQ | LTEQ | GTEQ | L_ANGLE | R_ANGLE | PLUS | STAR | ||
2528 | | MINUS | SLASH | PERCENT | SHL | SHR | CARET | PIPE | AMP | EQ | PLUSEQ | SLASHEQ | ||
2529 | | STAREQ | PERCENTEQ | SHREQ | SHLEQ | MINUSEQ | PIPEEQ | AMPEQ | CARETEQ => true, | ||
2530 | _ => false, | ||
2531 | } | ||
2532 | } | ||
2533 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2534 | let res = match syntax.kind() { | ||
2535 | PIPEPIPE => BinOp::Pipepipe(Pipepipe { syntax }), | ||
2536 | AMPAMP => BinOp::Ampamp(Ampamp { syntax }), | ||
2537 | EQEQ => BinOp::Eqeq(Eqeq { syntax }), | ||
2538 | NEQ => BinOp::Neq(Neq { syntax }), | ||
2539 | LTEQ => BinOp::Lteq(Lteq { syntax }), | ||
2540 | GTEQ => BinOp::Gteq(Gteq { syntax }), | ||
2541 | L_ANGLE => BinOp::LAngle(LAngle { syntax }), | ||
2542 | R_ANGLE => BinOp::RAngle(RAngle { syntax }), | ||
2543 | PLUS => BinOp::Plus(Plus { syntax }), | ||
2544 | STAR => BinOp::Star(Star { syntax }), | ||
2545 | MINUS => BinOp::Minus(Minus { syntax }), | ||
2546 | SLASH => BinOp::Slash(Slash { syntax }), | ||
2547 | PERCENT => BinOp::Percent(Percent { syntax }), | ||
2548 | SHL => BinOp::Shl(Shl { syntax }), | ||
2549 | SHR => BinOp::Shr(Shr { syntax }), | ||
2550 | CARET => BinOp::Caret(Caret { syntax }), | ||
2551 | PIPE => BinOp::Pipe(Pipe { syntax }), | ||
2552 | AMP => BinOp::Amp(Amp { syntax }), | ||
2553 | EQ => BinOp::Eq(Eq { syntax }), | ||
2554 | PLUSEQ => BinOp::Pluseq(Pluseq { syntax }), | ||
2555 | SLASHEQ => BinOp::Slasheq(Slasheq { syntax }), | ||
2556 | STAREQ => BinOp::Stareq(Stareq { syntax }), | ||
2557 | PERCENTEQ => BinOp::Percenteq(Percenteq { syntax }), | ||
2558 | SHREQ => BinOp::Shreq(Shreq { syntax }), | ||
2559 | SHLEQ => BinOp::Shleq(Shleq { syntax }), | ||
2560 | MINUSEQ => BinOp::Minuseq(Minuseq { syntax }), | ||
2561 | PIPEEQ => BinOp::Pipeeq(Pipeeq { syntax }), | ||
2562 | AMPEQ => BinOp::Ampeq(Ampeq { syntax }), | ||
2563 | CARETEQ => BinOp::Careteq(Careteq { syntax }), | ||
2564 | _ => return None, | ||
2565 | }; | ||
2566 | Some(res) | ||
2567 | } | ||
2568 | fn syntax(&self) -> &SyntaxToken { | ||
2569 | match self { | ||
2570 | BinOp::Pipepipe(it) => &it.syntax, | ||
2571 | BinOp::Ampamp(it) => &it.syntax, | ||
2572 | BinOp::Eqeq(it) => &it.syntax, | ||
2573 | BinOp::Neq(it) => &it.syntax, | ||
2574 | BinOp::Lteq(it) => &it.syntax, | ||
2575 | BinOp::Gteq(it) => &it.syntax, | ||
2576 | BinOp::LAngle(it) => &it.syntax, | ||
2577 | BinOp::RAngle(it) => &it.syntax, | ||
2578 | BinOp::Plus(it) => &it.syntax, | ||
2579 | BinOp::Star(it) => &it.syntax, | ||
2580 | BinOp::Minus(it) => &it.syntax, | ||
2581 | BinOp::Slash(it) => &it.syntax, | ||
2582 | BinOp::Percent(it) => &it.syntax, | ||
2583 | BinOp::Shl(it) => &it.syntax, | ||
2584 | BinOp::Shr(it) => &it.syntax, | ||
2585 | BinOp::Caret(it) => &it.syntax, | ||
2586 | BinOp::Pipe(it) => &it.syntax, | ||
2587 | BinOp::Amp(it) => &it.syntax, | ||
2588 | BinOp::Eq(it) => &it.syntax, | ||
2589 | BinOp::Pluseq(it) => &it.syntax, | ||
2590 | BinOp::Slasheq(it) => &it.syntax, | ||
2591 | BinOp::Stareq(it) => &it.syntax, | ||
2592 | BinOp::Percenteq(it) => &it.syntax, | ||
2593 | BinOp::Shreq(it) => &it.syntax, | ||
2594 | BinOp::Shleq(it) => &it.syntax, | ||
2595 | BinOp::Minuseq(it) => &it.syntax, | ||
2596 | BinOp::Pipeeq(it) => &it.syntax, | ||
2597 | BinOp::Ampeq(it) => &it.syntax, | ||
2598 | BinOp::Careteq(it) => &it.syntax, | ||
2599 | } | ||
2600 | } | ||
2601 | } | ||
2602 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2603 | pub enum PrefixOp { | ||
2604 | Minus(Minus), | ||
2605 | Excl(Excl), | ||
2606 | Star(Star), | ||
2607 | } | ||
2608 | impl From<Minus> for PrefixOp { | ||
2609 | fn from(node: Minus) -> PrefixOp { PrefixOp::Minus(node) } | ||
2610 | } | ||
2611 | impl From<Excl> for PrefixOp { | ||
2612 | fn from(node: Excl) -> PrefixOp { PrefixOp::Excl(node) } | ||
2613 | } | ||
2614 | impl From<Star> for PrefixOp { | ||
2615 | fn from(node: Star) -> PrefixOp { PrefixOp::Star(node) } | ||
2616 | } | ||
2617 | impl std::fmt::Display for PrefixOp { | ||
2618 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2619 | std::fmt::Display::fmt(self.syntax(), f) | ||
2620 | } | ||
2621 | } | ||
2622 | impl AstToken for PrefixOp { | ||
2623 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2624 | match kind { | ||
2625 | MINUS | EXCL | STAR => true, | ||
2626 | _ => false, | ||
2627 | } | ||
2628 | } | ||
2629 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2630 | let res = match syntax.kind() { | ||
2631 | MINUS => PrefixOp::Minus(Minus { syntax }), | ||
2632 | EXCL => PrefixOp::Excl(Excl { syntax }), | ||
2633 | STAR => PrefixOp::Star(Star { syntax }), | ||
2634 | _ => return None, | ||
2635 | }; | ||
2636 | Some(res) | ||
2637 | } | ||
2638 | fn syntax(&self) -> &SyntaxToken { | ||
2639 | match self { | ||
2640 | PrefixOp::Minus(it) => &it.syntax, | ||
2641 | PrefixOp::Excl(it) => &it.syntax, | ||
2642 | PrefixOp::Star(it) => &it.syntax, | ||
2643 | } | ||
2644 | } | ||
2645 | } | ||
2646 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2647 | pub enum RangeOp { | ||
2648 | Dotdot(Dotdot), | ||
2649 | Dotdoteq(Dotdoteq), | ||
2650 | } | ||
2651 | impl From<Dotdot> for RangeOp { | ||
2652 | fn from(node: Dotdot) -> RangeOp { RangeOp::Dotdot(node) } | ||
2653 | } | ||
2654 | impl From<Dotdoteq> for RangeOp { | ||
2655 | fn from(node: Dotdoteq) -> RangeOp { RangeOp::Dotdoteq(node) } | ||
2656 | } | ||
2657 | impl std::fmt::Display for RangeOp { | ||
2658 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2659 | std::fmt::Display::fmt(self.syntax(), f) | ||
2660 | } | ||
2661 | } | ||
2662 | impl AstToken for RangeOp { | ||
2663 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2664 | match kind { | ||
2665 | DOTDOT | DOTDOTEQ => true, | ||
2666 | _ => false, | ||
2667 | } | ||
2668 | } | ||
2669 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2670 | let res = match syntax.kind() { | ||
2671 | DOTDOT => RangeOp::Dotdot(Dotdot { syntax }), | ||
2672 | DOTDOTEQ => RangeOp::Dotdoteq(Dotdoteq { syntax }), | ||
2673 | _ => return None, | ||
2674 | }; | ||
2675 | Some(res) | ||
2676 | } | ||
2677 | fn syntax(&self) -> &SyntaxToken { | ||
2678 | match self { | ||
2679 | RangeOp::Dotdot(it) => &it.syntax, | ||
2680 | RangeOp::Dotdoteq(it) => &it.syntax, | ||
2681 | } | ||
2682 | } | ||
2683 | } | ||
2684 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2685 | pub enum LiteralToken { | ||
2686 | IntNumber(IntNumber), | ||
2687 | FloatNumber(FloatNumber), | ||
2688 | String(String), | ||
2689 | RawString(RawString), | ||
2690 | TrueKw(TrueKw), | ||
2691 | FalseKw(FalseKw), | ||
2692 | ByteString(ByteString), | ||
2693 | RawByteString(RawByteString), | ||
2694 | Char(Char), | ||
2695 | Byte(Byte), | ||
2696 | } | ||
2697 | impl From<IntNumber> for LiteralToken { | ||
2698 | fn from(node: IntNumber) -> LiteralToken { LiteralToken::IntNumber(node) } | ||
2699 | } | ||
2700 | impl From<FloatNumber> for LiteralToken { | ||
2701 | fn from(node: FloatNumber) -> LiteralToken { LiteralToken::FloatNumber(node) } | ||
2702 | } | ||
2703 | impl From<String> for LiteralToken { | ||
2704 | fn from(node: String) -> LiteralToken { LiteralToken::String(node) } | ||
2705 | } | ||
2706 | impl From<RawString> for LiteralToken { | ||
2707 | fn from(node: RawString) -> LiteralToken { LiteralToken::RawString(node) } | ||
2708 | } | ||
2709 | impl From<TrueKw> for LiteralToken { | ||
2710 | fn from(node: TrueKw) -> LiteralToken { LiteralToken::TrueKw(node) } | ||
2711 | } | ||
2712 | impl From<FalseKw> for LiteralToken { | ||
2713 | fn from(node: FalseKw) -> LiteralToken { LiteralToken::FalseKw(node) } | ||
2714 | } | ||
2715 | impl From<ByteString> for LiteralToken { | ||
2716 | fn from(node: ByteString) -> LiteralToken { LiteralToken::ByteString(node) } | ||
2717 | } | ||
2718 | impl From<RawByteString> for LiteralToken { | ||
2719 | fn from(node: RawByteString) -> LiteralToken { LiteralToken::RawByteString(node) } | ||
2720 | } | ||
2721 | impl From<Char> for LiteralToken { | ||
2722 | fn from(node: Char) -> LiteralToken { LiteralToken::Char(node) } | ||
2723 | } | ||
2724 | impl From<Byte> for LiteralToken { | ||
2725 | fn from(node: Byte) -> LiteralToken { LiteralToken::Byte(node) } | ||
2726 | } | ||
2727 | impl std::fmt::Display for LiteralToken { | ||
2728 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2729 | std::fmt::Display::fmt(self.syntax(), f) | ||
2730 | } | ||
2731 | } | ||
2732 | impl AstToken for LiteralToken { | ||
2733 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2734 | match kind { | ||
2735 | INT_NUMBER | FLOAT_NUMBER | STRING | RAW_STRING | TRUE_KW | FALSE_KW | BYTE_STRING | ||
2736 | | RAW_BYTE_STRING | CHAR | BYTE => true, | ||
2737 | _ => false, | ||
2738 | } | ||
2739 | } | ||
2740 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2741 | let res = match syntax.kind() { | ||
2742 | INT_NUMBER => LiteralToken::IntNumber(IntNumber { syntax }), | ||
2743 | FLOAT_NUMBER => LiteralToken::FloatNumber(FloatNumber { syntax }), | ||
2744 | STRING => LiteralToken::String(String { syntax }), | ||
2745 | RAW_STRING => LiteralToken::RawString(RawString { syntax }), | ||
2746 | TRUE_KW => LiteralToken::TrueKw(TrueKw { syntax }), | ||
2747 | FALSE_KW => LiteralToken::FalseKw(FalseKw { syntax }), | ||
2748 | BYTE_STRING => LiteralToken::ByteString(ByteString { syntax }), | ||
2749 | RAW_BYTE_STRING => LiteralToken::RawByteString(RawByteString { syntax }), | ||
2750 | CHAR => LiteralToken::Char(Char { syntax }), | ||
2751 | BYTE => LiteralToken::Byte(Byte { syntax }), | ||
2752 | _ => return None, | ||
2753 | }; | ||
2754 | Some(res) | ||
2755 | } | ||
2756 | fn syntax(&self) -> &SyntaxToken { | ||
2757 | match self { | ||
2758 | LiteralToken::IntNumber(it) => &it.syntax, | ||
2759 | LiteralToken::FloatNumber(it) => &it.syntax, | ||
2760 | LiteralToken::String(it) => &it.syntax, | ||
2761 | LiteralToken::RawString(it) => &it.syntax, | ||
2762 | LiteralToken::TrueKw(it) => &it.syntax, | ||
2763 | LiteralToken::FalseKw(it) => &it.syntax, | ||
2764 | LiteralToken::ByteString(it) => &it.syntax, | ||
2765 | LiteralToken::RawByteString(it) => &it.syntax, | ||
2766 | LiteralToken::Char(it) => &it.syntax, | ||
2767 | LiteralToken::Byte(it) => &it.syntax, | ||
2768 | } | ||
2769 | } | ||
2770 | } | ||
2771 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
2772 | pub enum NameRefToken { | ||
2773 | Ident(Ident), | ||
2774 | IntNumber(IntNumber), | ||
2775 | } | ||
2776 | impl From<Ident> for NameRefToken { | ||
2777 | fn from(node: Ident) -> NameRefToken { NameRefToken::Ident(node) } | ||
2778 | } | ||
2779 | impl From<IntNumber> for NameRefToken { | ||
2780 | fn from(node: IntNumber) -> NameRefToken { NameRefToken::IntNumber(node) } | ||
2781 | } | ||
2782 | impl std::fmt::Display for NameRefToken { | ||
2783 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
2784 | std::fmt::Display::fmt(self.syntax(), f) | ||
2785 | } | ||
2786 | } | ||
2787 | impl AstToken for NameRefToken { | ||
2788 | fn can_cast(kind: SyntaxKind) -> bool { | ||
2789 | match kind { | ||
2790 | IDENT | INT_NUMBER => true, | ||
2791 | _ => false, | ||
2792 | } | ||
2793 | } | ||
2794 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
2795 | let res = match syntax.kind() { | ||
2796 | IDENT => NameRefToken::Ident(Ident { syntax }), | ||
2797 | INT_NUMBER => NameRefToken::IntNumber(IntNumber { syntax }), | ||
2798 | _ => return None, | ||
2799 | }; | ||
2800 | Some(res) | ||
2801 | } | ||
2802 | fn syntax(&self) -> &SyntaxToken { | ||
2803 | match self { | ||
2804 | NameRefToken::Ident(it) => &it.syntax, | ||
2805 | NameRefToken::IntNumber(it) => &it.syntax, | ||
2806 | } | ||
2807 | } | ||
2808 | } | ||
diff --git a/crates/ra_syntax/src/ast/tokens.rs b/crates/ra_syntax/src/ast/tokens.rs index 1a51b8d3b..e8320b57e 100644 --- a/crates/ra_syntax/src/ast/tokens.rs +++ b/crates/ra_syntax/src/ast/tokens.rs | |||
@@ -1,26 +1,10 @@ | |||
1 | //! There are many AstNodes, but only a few tokens, so we hand-write them here. | 1 | //! There are many AstNodes, but only a few tokens, so we hand-write them here. |
2 | 2 | ||
3 | use crate::{ | 3 | use crate::{ |
4 | ast::AstToken, | 4 | ast::{AstToken, Comment, RawString, String, Whitespace}, |
5 | SyntaxKind::{COMMENT, RAW_STRING, STRING, WHITESPACE}, | 5 | TextRange, TextUnit, |
6 | SyntaxToken, TextRange, TextUnit, | ||
7 | }; | 6 | }; |
8 | 7 | ||
9 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
10 | pub struct Comment(SyntaxToken); | ||
11 | |||
12 | impl AstToken for Comment { | ||
13 | fn cast(token: SyntaxToken) -> Option<Self> { | ||
14 | match token.kind() { | ||
15 | COMMENT => Some(Comment(token)), | ||
16 | _ => None, | ||
17 | } | ||
18 | } | ||
19 | fn syntax(&self) -> &SyntaxToken { | ||
20 | &self.0 | ||
21 | } | ||
22 | } | ||
23 | |||
24 | impl Comment { | 8 | impl Comment { |
25 | pub fn kind(&self) -> CommentKind { | 9 | pub fn kind(&self) -> CommentKind { |
26 | kind_by_prefix(self.text()) | 10 | kind_by_prefix(self.text()) |
@@ -89,20 +73,6 @@ fn prefix_by_kind(kind: CommentKind) -> &'static str { | |||
89 | unreachable!() | 73 | unreachable!() |
90 | } | 74 | } |
91 | 75 | ||
92 | pub struct Whitespace(SyntaxToken); | ||
93 | |||
94 | impl AstToken for Whitespace { | ||
95 | fn cast(token: SyntaxToken) -> Option<Self> { | ||
96 | match token.kind() { | ||
97 | WHITESPACE => Some(Whitespace(token)), | ||
98 | _ => None, | ||
99 | } | ||
100 | } | ||
101 | fn syntax(&self) -> &SyntaxToken { | ||
102 | &self.0 | ||
103 | } | ||
104 | } | ||
105 | |||
106 | impl Whitespace { | 76 | impl Whitespace { |
107 | pub fn spans_multiple_lines(&self) -> bool { | 77 | pub fn spans_multiple_lines(&self) -> bool { |
108 | let text = self.text(); | 78 | let text = self.text(); |
@@ -168,20 +138,6 @@ pub trait HasStringValue: HasQuotes { | |||
168 | fn value(&self) -> Option<std::string::String>; | 138 | fn value(&self) -> Option<std::string::String>; |
169 | } | 139 | } |
170 | 140 | ||
171 | pub struct String(SyntaxToken); | ||
172 | |||
173 | impl AstToken for String { | ||
174 | fn cast(token: SyntaxToken) -> Option<Self> { | ||
175 | match token.kind() { | ||
176 | STRING => Some(String(token)), | ||
177 | _ => None, | ||
178 | } | ||
179 | } | ||
180 | fn syntax(&self) -> &SyntaxToken { | ||
181 | &self.0 | ||
182 | } | ||
183 | } | ||
184 | |||
185 | impl HasStringValue for String { | 141 | impl HasStringValue for String { |
186 | fn value(&self) -> Option<std::string::String> { | 142 | fn value(&self) -> Option<std::string::String> { |
187 | let text = self.text().as_str(); | 143 | let text = self.text().as_str(); |
@@ -201,20 +157,6 @@ impl HasStringValue for String { | |||
201 | } | 157 | } |
202 | } | 158 | } |
203 | 159 | ||
204 | pub struct RawString(SyntaxToken); | ||
205 | |||
206 | impl AstToken for RawString { | ||
207 | fn cast(token: SyntaxToken) -> Option<Self> { | ||
208 | match token.kind() { | ||
209 | RAW_STRING => Some(RawString(token)), | ||
210 | _ => None, | ||
211 | } | ||
212 | } | ||
213 | fn syntax(&self) -> &SyntaxToken { | ||
214 | &self.0 | ||
215 | } | ||
216 | } | ||
217 | |||
218 | impl HasStringValue for RawString { | 160 | impl HasStringValue for RawString { |
219 | fn value(&self) -> Option<std::string::String> { | 161 | fn value(&self) -> Option<std::string::String> { |
220 | let text = self.text().as_str(); | 162 | let text = self.text().as_str(); |
diff --git a/crates/ra_syntax/src/ast/traits.rs b/crates/ra_syntax/src/ast/traits.rs index 576378306..870e83804 100644 --- a/crates/ra_syntax/src/ast/traits.rs +++ b/crates/ra_syntax/src/ast/traits.rs | |||
@@ -5,7 +5,7 @@ | |||
5 | use itertools::Itertools; | 5 | use itertools::Itertools; |
6 | 6 | ||
7 | use crate::{ | 7 | use crate::{ |
8 | ast::{self, child_opt, children, AstChildren, AstNode, AstToken}, | 8 | ast::{self, child_opt, children, support, AstChildren, AstNode, AstToken}, |
9 | syntax_node::SyntaxElementChildren, | 9 | syntax_node::SyntaxElementChildren, |
10 | }; | 10 | }; |
11 | 11 | ||
@@ -31,6 +31,10 @@ pub trait LoopBodyOwner: AstNode { | |||
31 | fn loop_body(&self) -> Option<ast::BlockExpr> { | 31 | fn loop_body(&self) -> Option<ast::BlockExpr> { |
32 | child_opt(self) | 32 | child_opt(self) |
33 | } | 33 | } |
34 | |||
35 | fn label(&self) -> Option<ast::Label> { | ||
36 | child_opt(self) | ||
37 | } | ||
34 | } | 38 | } |
35 | 39 | ||
36 | pub trait ArgListOwner: AstNode { | 40 | pub trait ArgListOwner: AstNode { |
@@ -65,6 +69,10 @@ pub trait TypeBoundsOwner: AstNode { | |||
65 | fn type_bound_list(&self) -> Option<ast::TypeBoundList> { | 69 | fn type_bound_list(&self) -> Option<ast::TypeBoundList> { |
66 | child_opt(self) | 70 | child_opt(self) |
67 | } | 71 | } |
72 | |||
73 | fn colon(&self) -> Option<ast::Colon> { | ||
74 | support::token(self.syntax()) | ||
75 | } | ||
68 | } | 76 | } |
69 | 77 | ||
70 | pub trait AttrsOwner: AstNode { | 78 | pub trait AttrsOwner: AstNode { |
diff --git a/crates/ra_syntax/test_data/parser/ok/0065_plus_after_fn_trait_bound.rast b/crates/ra_syntax/test_data/parser/ok/0065_plus_after_fn_trait_bound.rast new file mode 100644 index 000000000..1b0acf47c --- /dev/null +++ b/crates/ra_syntax/test_data/parser/ok/0065_plus_after_fn_trait_bound.rast | |||
@@ -0,0 +1,61 @@ | |||
1 | SOURCE_FILE@[0; 40) | ||
2 | FN_DEF@[0; 39) | ||
3 | FN_KW@[0; 2) "fn" | ||
4 | WHITESPACE@[2; 3) " " | ||
5 | NAME@[3; 4) | ||
6 | IDENT@[3; 4) "f" | ||
7 | TYPE_PARAM_LIST@[4; 7) | ||
8 | L_ANGLE@[4; 5) "<" | ||
9 | TYPE_PARAM@[5; 6) | ||
10 | NAME@[5; 6) | ||
11 | IDENT@[5; 6) "T" | ||
12 | R_ANGLE@[6; 7) ">" | ||
13 | PARAM_LIST@[7; 9) | ||
14 | L_PAREN@[7; 8) "(" | ||
15 | R_PAREN@[8; 9) ")" | ||
16 | WHITESPACE@[9; 10) " " | ||
17 | WHERE_CLAUSE@[10; 36) | ||
18 | WHERE_KW@[10; 15) "where" | ||
19 | WHITESPACE@[15; 16) " " | ||
20 | WHERE_PRED@[16; 36) | ||
21 | PATH_TYPE@[16; 17) | ||
22 | PATH@[16; 17) | ||
23 | PATH_SEGMENT@[16; 17) | ||
24 | NAME_REF@[16; 17) | ||
25 | IDENT@[16; 17) "T" | ||
26 | COLON@[17; 18) ":" | ||
27 | WHITESPACE@[18; 19) " " | ||
28 | TYPE_BOUND_LIST@[19; 36) | ||
29 | TYPE_BOUND@[19; 29) | ||
30 | PATH_TYPE@[19; 29) | ||
31 | PATH@[19; 29) | ||
32 | PATH_SEGMENT@[19; 29) | ||
33 | NAME_REF@[19; 21) | ||
34 | IDENT@[19; 21) "Fn" | ||
35 | PARAM_LIST@[21; 23) | ||
36 | L_PAREN@[21; 22) "(" | ||
37 | R_PAREN@[22; 23) ")" | ||
38 | WHITESPACE@[23; 24) " " | ||
39 | RET_TYPE@[24; 29) | ||
40 | THIN_ARROW@[24; 26) "->" | ||
41 | WHITESPACE@[26; 27) " " | ||
42 | PATH_TYPE@[27; 29) | ||
43 | PATH@[27; 29) | ||
44 | PATH_SEGMENT@[27; 29) | ||
45 | NAME_REF@[27; 29) | ||
46 | IDENT@[27; 29) "u8" | ||
47 | WHITESPACE@[29; 30) " " | ||
48 | PLUS@[30; 31) "+" | ||
49 | WHITESPACE@[31; 32) " " | ||
50 | TYPE_BOUND@[32; 36) | ||
51 | PATH_TYPE@[32; 36) | ||
52 | PATH@[32; 36) | ||
53 | PATH_SEGMENT@[32; 36) | ||
54 | NAME_REF@[32; 36) | ||
55 | IDENT@[32; 36) "Send" | ||
56 | WHITESPACE@[36; 37) " " | ||
57 | BLOCK_EXPR@[37; 39) | ||
58 | BLOCK@[37; 39) | ||
59 | L_CURLY@[37; 38) "{" | ||
60 | R_CURLY@[38; 39) "}" | ||
61 | WHITESPACE@[39; 40) "\n" | ||
diff --git a/crates/ra_syntax/test_data/parser/ok/0065_plus_after_fn_trait_bound.rs b/crates/ra_syntax/test_data/parser/ok/0065_plus_after_fn_trait_bound.rs new file mode 100644 index 000000000..29f3655e0 --- /dev/null +++ b/crates/ra_syntax/test_data/parser/ok/0065_plus_after_fn_trait_bound.rs | |||
@@ -0,0 +1 @@ | |||
fn f<T>() where T: Fn() -> u8 + Send {} | |||
diff --git a/crates/ra_tt/src/lib.rs b/crates/ra_tt/src/lib.rs index bd484aa30..5248e026c 100644 --- a/crates/ra_tt/src/lib.rs +++ b/crates/ra_tt/src/lib.rs | |||
@@ -57,7 +57,7 @@ pub enum Leaf { | |||
57 | } | 57 | } |
58 | impl_froms!(Leaf: Literal, Punct, Ident); | 58 | impl_froms!(Leaf: Literal, Punct, Ident); |
59 | 59 | ||
60 | #[derive(Debug, Clone, PartialEq, Eq, Hash, Default)] | 60 | #[derive(Clone, PartialEq, Eq, Hash, Default)] |
61 | pub struct Subtree { | 61 | pub struct Subtree { |
62 | pub delimiter: Option<Delimiter>, | 62 | pub delimiter: Option<Delimiter>, |
63 | pub token_trees: Vec<TokenTree>, | 63 | pub token_trees: Vec<TokenTree>, |
@@ -101,6 +101,61 @@ pub struct Ident { | |||
101 | pub id: TokenId, | 101 | pub id: TokenId, |
102 | } | 102 | } |
103 | 103 | ||
104 | fn print_debug_subtree(f: &mut fmt::Formatter<'_>, subtree: &Subtree, level: usize) -> fmt::Result { | ||
105 | let align = std::iter::repeat(" ").take(level).collect::<String>(); | ||
106 | |||
107 | let aux = match subtree.delimiter.map(|it| (it.kind, it.id.0)) { | ||
108 | None => "$".to_string(), | ||
109 | Some((DelimiterKind::Parenthesis, id)) => format!("() {}", id), | ||
110 | Some((DelimiterKind::Brace, id)) => format!("{{}} {}", id), | ||
111 | Some((DelimiterKind::Bracket, id)) => format!("[] {}", id), | ||
112 | }; | ||
113 | |||
114 | if subtree.token_trees.is_empty() { | ||
115 | write!(f, "{}SUBTREE {}", align, aux)?; | ||
116 | } else { | ||
117 | writeln!(f, "{}SUBTREE {}", align, aux)?; | ||
118 | for (idx, child) in subtree.token_trees.iter().enumerate() { | ||
119 | print_debug_token(f, child, level + 1)?; | ||
120 | if idx != subtree.token_trees.len() - 1 { | ||
121 | writeln!(f, "")?; | ||
122 | } | ||
123 | } | ||
124 | } | ||
125 | |||
126 | Ok(()) | ||
127 | } | ||
128 | |||
129 | fn print_debug_token(f: &mut fmt::Formatter<'_>, tkn: &TokenTree, level: usize) -> fmt::Result { | ||
130 | let align = std::iter::repeat(" ").take(level).collect::<String>(); | ||
131 | |||
132 | match tkn { | ||
133 | TokenTree::Leaf(leaf) => match leaf { | ||
134 | Leaf::Literal(lit) => write!(f, "{}LITERAL {} {}", align, lit.text, lit.id.0)?, | ||
135 | Leaf::Punct(punct) => write!( | ||
136 | f, | ||
137 | "{}PUNCH {} [{}] {}", | ||
138 | align, | ||
139 | punct.char, | ||
140 | if punct.spacing == Spacing::Alone { "alone" } else { "joint" }, | ||
141 | punct.id.0 | ||
142 | )?, | ||
143 | Leaf::Ident(ident) => write!(f, "{}IDENT {} {}", align, ident.text, ident.id.0)?, | ||
144 | }, | ||
145 | TokenTree::Subtree(subtree) => { | ||
146 | print_debug_subtree(f, subtree, level)?; | ||
147 | } | ||
148 | } | ||
149 | |||
150 | Ok(()) | ||
151 | } | ||
152 | |||
153 | impl Debug for Subtree { | ||
154 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
155 | print_debug_subtree(f, self, 0) | ||
156 | } | ||
157 | } | ||
158 | |||
104 | impl fmt::Display for TokenTree { | 159 | impl fmt::Display for TokenTree { |
105 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { | 160 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
106 | match self { | 161 | match self { |
diff --git a/docs/user/readme.adoc b/docs/user/readme.adoc index 911163eb7..abd126340 100644 --- a/docs/user/readme.adoc +++ b/docs/user/readme.adoc | |||
@@ -187,30 +187,7 @@ Prerequisites: | |||
187 | 187 | ||
188 | `LSP` package. | 188 | `LSP` package. |
189 | 189 | ||
190 | Installation: | 190 | Invoke the command palette (`ctrl+shift+p`) and type LSP enable to locally/globally enable the rust-analyzer LSP (type LSP enable, then choose either locally or globally, then select rust-analyzer) |
191 | |||
192 | 1. Invoke the command palette with <kbd>Ctrl+Shift+P</kbd> | ||
193 | 2. Type `LSP Settings` to open the LSP preferences editor | ||
194 | 3. Add the following LSP client definition to your settings: | ||
195 | + | ||
196 | [source,json] | ||
197 | ---- | ||
198 | "rust-analyzer": { | ||
199 | "command": ["rust-analyzer"], | ||
200 | "languageId": "rust", | ||
201 | "scopes": ["source.rust"], | ||
202 | "syntaxes": [ | ||
203 | "Packages/Rust/Rust.sublime-syntax", | ||
204 | "Packages/Rust Enhanced/RustEnhanced.sublime-syntax" | ||
205 | ], | ||
206 | "initializationOptions": { | ||
207 | "featureFlags": { | ||
208 | } | ||
209 | }, | ||
210 | } | ||
211 | ---- | ||
212 | |||
213 | 4. You can now invoke the command palette and type LSP enable to locally/globally enable the rust-analyzer LSP (type LSP enable, then choose either locally or globally, then select rust-analyzer) | ||
214 | 191 | ||
215 | == Usage | 192 | == Usage |
216 | 193 | ||
diff --git a/editors/code/package.json b/editors/code/package.json index 94edc6eeb..0bf7b6ae6 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -21,7 +21,7 @@ | |||
21 | "Programming Languages" | 21 | "Programming Languages" |
22 | ], | 22 | ], |
23 | "engines": { | 23 | "engines": { |
24 | "vscode": "^1.43.0" | 24 | "vscode": "^1.44.0" |
25 | }, | 25 | }, |
26 | "enableProposedApi": true, | 26 | "enableProposedApi": true, |
27 | "scripts": { | 27 | "scripts": { |
@@ -342,11 +342,6 @@ | |||
342 | "default": true, | 342 | "default": true, |
343 | "description": "Show function name and docs in parameter hints" | 343 | "description": "Show function name and docs in parameter hints" |
344 | }, | 344 | }, |
345 | "rust-analyzer.highlighting.semanticTokens": { | ||
346 | "type": "boolean", | ||
347 | "default": false, | ||
348 | "description": "Use proposed semantic tokens API for syntax highlighting" | ||
349 | }, | ||
350 | "rust-analyzer.updates.channel": { | 345 | "rust-analyzer.updates.channel": { |
351 | "type": "string", | 346 | "type": "string", |
352 | "enum": [ | 347 | "enum": [ |
diff --git a/editors/code/src/client.ts b/editors/code/src/client.ts index 3b1d00bca..0ad4b63ae 100644 --- a/editors/code/src/client.ts +++ b/editors/code/src/client.ts | |||
@@ -1,11 +1,10 @@ | |||
1 | import * as lc from 'vscode-languageclient'; | 1 | import * as lc from 'vscode-languageclient'; |
2 | import * as vscode from 'vscode'; | 2 | import * as vscode from 'vscode'; |
3 | 3 | ||
4 | import { Config } from './config'; | ||
5 | import { CallHierarchyFeature } from 'vscode-languageclient/lib/callHierarchy.proposed'; | 4 | import { CallHierarchyFeature } from 'vscode-languageclient/lib/callHierarchy.proposed'; |
6 | import { SemanticTokensFeature, DocumentSemanticsTokensSignature } from 'vscode-languageclient/lib/semanticTokens.proposed'; | 5 | import { SemanticTokensFeature, DocumentSemanticsTokensSignature } from 'vscode-languageclient/lib/semanticTokens.proposed'; |
7 | 6 | ||
8 | export async function createClient(config: Config, serverPath: string, cwd: string): Promise<lc.LanguageClient> { | 7 | export async function createClient(serverPath: string, cwd: string): Promise<lc.LanguageClient> { |
9 | // '.' Is the fallback if no folder is open | 8 | // '.' Is the fallback if no folder is open |
10 | // TODO?: Workspace folders support Uri's (eg: file://test.txt). | 9 | // TODO?: Workspace folders support Uri's (eg: file://test.txt). |
11 | // It might be a good idea to test if the uri points to a file. | 10 | // It might be a good idea to test if the uri points to a file. |
@@ -73,15 +72,12 @@ export async function createClient(config: Config, serverPath: string, cwd: stri | |||
73 | }; | 72 | }; |
74 | 73 | ||
75 | // To turn on all proposed features use: res.registerProposedFeatures(); | 74 | // To turn on all proposed features use: res.registerProposedFeatures(); |
76 | // Here we want to just enable CallHierarchyFeature since it is available on stable. | 75 | // Here we want to enable CallHierarchyFeature and SemanticTokensFeature |
77 | // Note that while the CallHierarchyFeature is stable the LSP protocol is not. | 76 | // since they are available on stable. |
77 | // Note that while these features are stable in vscode their LSP protocol | ||
78 | // implementations are still in the "proposed" category for 3.16. | ||
78 | res.registerFeature(new CallHierarchyFeature(res)); | 79 | res.registerFeature(new CallHierarchyFeature(res)); |
79 | 80 | res.registerFeature(new SemanticTokensFeature(res)); | |
80 | if (config.package.enableProposedApi) { | ||
81 | if (config.highlightingSemanticTokens) { | ||
82 | res.registerFeature(new SemanticTokensFeature(res)); | ||
83 | } | ||
84 | } | ||
85 | 81 | ||
86 | return res; | 82 | return res; |
87 | } | 83 | } |
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index 1f45f1de0..21c1c9f23 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts | |||
@@ -69,7 +69,6 @@ export class Config { | |||
69 | get serverPath() { return this.cfg.get<null | string>("serverPath")!; } | 69 | get serverPath() { return this.cfg.get<null | string>("serverPath")!; } |
70 | get channel() { return this.cfg.get<UpdatesChannel>("updates.channel")!; } | 70 | get channel() { return this.cfg.get<UpdatesChannel>("updates.channel")!; } |
71 | get askBeforeDownload() { return this.cfg.get<boolean>("updates.askBeforeDownload")!; } | 71 | get askBeforeDownload() { return this.cfg.get<boolean>("updates.askBeforeDownload")!; } |
72 | get highlightingSemanticTokens() { return this.cfg.get<boolean>("highlighting.semanticTokens")!; } | ||
73 | get traceExtension() { return this.cfg.get<boolean>("trace.extension")!; } | 72 | get traceExtension() { return this.cfg.get<boolean>("trace.extension")!; } |
74 | 73 | ||
75 | get inlayHints() { | 74 | get inlayHints() { |
diff --git a/editors/code/src/ctx.ts b/editors/code/src/ctx.ts index bd1c3de07..f7ed62d03 100644 --- a/editors/code/src/ctx.ts +++ b/editors/code/src/ctx.ts | |||
@@ -21,7 +21,7 @@ export class Ctx { | |||
21 | serverPath: string, | 21 | serverPath: string, |
22 | cwd: string, | 22 | cwd: string, |
23 | ): Promise<Ctx> { | 23 | ): Promise<Ctx> { |
24 | const client = await createClient(config, serverPath, cwd); | 24 | const client = await createClient(serverPath, cwd); |
25 | const res = new Ctx(config, extCtx, client, serverPath); | 25 | const res = new Ctx(config, extCtx, client, serverPath); |
26 | res.pushCleanup(client.start()); | 26 | res.pushCleanup(client.start()); |
27 | await client.onReady(); | 27 | await client.onReady(); |
diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs index d9f51ec39..74a87e900 100644 --- a/xtask/src/ast_src.rs +++ b/xtask/src/ast_src.rs | |||
@@ -70,7 +70,7 @@ pub(crate) const KINDS_SRC: KindsSrc = KindsSrc { | |||
70 | "match", "mod", "move", "mut", "pub", "ref", "return", "self", "static", "struct", "super", | 70 | "match", "mod", "move", "mut", "pub", "ref", "return", "self", "static", "struct", "super", |
71 | "trait", "true", "try", "type", "unsafe", "use", "where", "while", | 71 | "trait", "true", "try", "type", "unsafe", "use", "where", "while", |
72 | ], | 72 | ], |
73 | contextual_keywords: &["auto", "default", "existential", "union"], | 73 | contextual_keywords: &["auto", "default", "existential", "union", "raw"], |
74 | literals: &[ | 74 | literals: &[ |
75 | "INT_NUMBER", | 75 | "INT_NUMBER", |
76 | "FLOAT_NUMBER", | 76 | "FLOAT_NUMBER", |
@@ -227,6 +227,7 @@ pub(crate) const KINDS_SRC: KindsSrc = KindsSrc { | |||
227 | pub(crate) struct AstSrc<'a> { | 227 | pub(crate) struct AstSrc<'a> { |
228 | pub(crate) nodes: &'a [AstNodeSrc<'a>], | 228 | pub(crate) nodes: &'a [AstNodeSrc<'a>], |
229 | pub(crate) enums: &'a [AstEnumSrc<'a>], | 229 | pub(crate) enums: &'a [AstEnumSrc<'a>], |
230 | pub(crate) token_enums: &'a [AstEnumSrc<'a>], | ||
230 | } | 231 | } |
231 | 232 | ||
232 | pub(crate) struct AstNodeSrc<'a> { | 233 | pub(crate) struct AstNodeSrc<'a> { |
@@ -297,235 +298,311 @@ macro_rules! ast_enums { | |||
297 | 298 | ||
298 | pub(crate) const AST_SRC: AstSrc = AstSrc { | 299 | pub(crate) const AST_SRC: AstSrc = AstSrc { |
299 | nodes: &ast_nodes! { | 300 | nodes: &ast_nodes! { |
300 | struct SourceFile: ModuleItemOwner, FnDefOwner { | 301 | struct SourceFile: ModuleItemOwner, FnDefOwner, AttrsOwner { |
301 | modules: [Module], | 302 | modules: [Module], |
302 | } | 303 | } |
303 | 304 | ||
304 | struct FnDef: VisibilityOwner, NameOwner, TypeParamsOwner, DocCommentsOwner, AttrsOwner { | 305 | struct FnDef: VisibilityOwner, NameOwner, TypeParamsOwner, DocCommentsOwner, AttrsOwner { |
306 | Abi, | ||
307 | ConstKw, | ||
308 | DefaultKw, | ||
309 | AsyncKw, | ||
310 | UnsafeKw, | ||
311 | FnKw, | ||
305 | ParamList, | 312 | ParamList, |
306 | RetType, | 313 | RetType, |
307 | body: BlockExpr, | 314 | body: BlockExpr, |
315 | Semi | ||
308 | } | 316 | } |
309 | 317 | ||
310 | struct RetType { TypeRef } | 318 | struct RetType { ThinArrow, TypeRef } |
311 | 319 | ||
312 | struct StructDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCommentsOwner { | 320 | struct StructDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCommentsOwner { |
321 | StructKw, | ||
322 | FieldDefList, | ||
323 | Semi | ||
313 | } | 324 | } |
314 | 325 | ||
315 | struct UnionDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCommentsOwner { | 326 | struct UnionDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCommentsOwner { |
327 | UnionKw, | ||
316 | RecordFieldDefList, | 328 | RecordFieldDefList, |
317 | } | 329 | } |
318 | 330 | ||
319 | struct RecordFieldDefList { fields: [RecordFieldDef] } | 331 | struct RecordFieldDefList { LCurly, fields: [RecordFieldDef], RCurly } |
320 | struct RecordFieldDef: VisibilityOwner, NameOwner, AttrsOwner, DocCommentsOwner, TypeAscriptionOwner { } | 332 | struct RecordFieldDef: VisibilityOwner, NameOwner, AttrsOwner, DocCommentsOwner, TypeAscriptionOwner { } |
321 | 333 | ||
322 | struct TupleFieldDefList { fields: [TupleFieldDef] } | 334 | struct TupleFieldDefList { LParen, fields: [TupleFieldDef], RParen } |
323 | struct TupleFieldDef: VisibilityOwner, AttrsOwner { | 335 | struct TupleFieldDef: VisibilityOwner, AttrsOwner { |
324 | TypeRef, | 336 | TypeRef, |
325 | } | 337 | } |
326 | 338 | ||
327 | struct EnumDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCommentsOwner { | 339 | struct EnumDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCommentsOwner { |
340 | EnumKw, | ||
328 | variant_list: EnumVariantList, | 341 | variant_list: EnumVariantList, |
329 | } | 342 | } |
330 | struct EnumVariantList { | 343 | struct EnumVariantList { |
344 | LCurly, | ||
331 | variants: [EnumVariant], | 345 | variants: [EnumVariant], |
346 | RCurly | ||
332 | } | 347 | } |
333 | struct EnumVariant: NameOwner, DocCommentsOwner, AttrsOwner { | 348 | struct EnumVariant: VisibilityOwner, NameOwner, DocCommentsOwner, AttrsOwner { |
349 | FieldDefList, | ||
350 | Eq, | ||
334 | Expr | 351 | Expr |
335 | } | 352 | } |
336 | 353 | ||
337 | struct TraitDef: VisibilityOwner, NameOwner, AttrsOwner, DocCommentsOwner, TypeParamsOwner, TypeBoundsOwner { | 354 | struct TraitDef: VisibilityOwner, NameOwner, AttrsOwner, DocCommentsOwner, TypeParamsOwner, TypeBoundsOwner { |
355 | UnsafeKw, | ||
356 | AutoKw, | ||
357 | TraitKw, | ||
338 | ItemList, | 358 | ItemList, |
339 | } | 359 | } |
340 | 360 | ||
341 | struct Module: VisibilityOwner, NameOwner, AttrsOwner, DocCommentsOwner { | 361 | struct Module: VisibilityOwner, NameOwner, AttrsOwner, DocCommentsOwner { |
362 | ModKw, | ||
342 | ItemList, | 363 | ItemList, |
364 | Semi | ||
343 | } | 365 | } |
344 | 366 | ||
345 | struct ItemList: FnDefOwner, ModuleItemOwner { | 367 | struct ItemList: FnDefOwner, ModuleItemOwner { |
368 | LCurly, | ||
346 | impl_items: [ImplItem], | 369 | impl_items: [ImplItem], |
370 | RCurly | ||
347 | } | 371 | } |
348 | 372 | ||
349 | struct ConstDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCommentsOwner, TypeAscriptionOwner { | 373 | struct ConstDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCommentsOwner, TypeAscriptionOwner { |
374 | DefaultKw, | ||
375 | ConstKw, | ||
376 | Eq, | ||
350 | body: Expr, | 377 | body: Expr, |
378 | Semi | ||
351 | } | 379 | } |
352 | 380 | ||
353 | struct StaticDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCommentsOwner, TypeAscriptionOwner { | 381 | struct StaticDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCommentsOwner, TypeAscriptionOwner { |
382 | StaticKw, | ||
383 | MutKw, | ||
384 | Eq, | ||
354 | body: Expr, | 385 | body: Expr, |
386 | Semi | ||
355 | } | 387 | } |
356 | 388 | ||
357 | struct TypeAliasDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCommentsOwner, TypeBoundsOwner { | 389 | struct TypeAliasDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCommentsOwner, TypeBoundsOwner { |
390 | DefaultKw, | ||
391 | TypeKw, | ||
392 | Eq, | ||
358 | TypeRef, | 393 | TypeRef, |
394 | Semi | ||
359 | } | 395 | } |
360 | 396 | ||
361 | struct ImplDef: TypeParamsOwner, AttrsOwner { | 397 | struct ImplDef: TypeParamsOwner, AttrsOwner { |
398 | DefaultKw, | ||
399 | ConstKw, | ||
400 | UnsafeKw, | ||
401 | ImplKw, | ||
402 | Excl, | ||
403 | ForKw, | ||
362 | ItemList, | 404 | ItemList, |
363 | } | 405 | } |
364 | 406 | ||
365 | struct ParenType { TypeRef } | 407 | struct ParenType { LParen, TypeRef, RParen } |
366 | struct TupleType { fields: [TypeRef] } | 408 | struct TupleType { LParen, fields: [TypeRef], RParen } |
367 | struct NeverType { } | 409 | struct NeverType { Excl } |
368 | struct PathType { Path } | 410 | struct PathType { Path } |
369 | struct PointerType { TypeRef } | 411 | struct PointerType { Star, ConstKw, MutKw, TypeRef } |
370 | struct ArrayType { TypeRef, Expr } | 412 | struct ArrayType { LBrack, TypeRef, Semi, Expr, RBrack } |
371 | struct SliceType { TypeRef } | 413 | struct SliceType { LBrack, TypeRef, RBrack } |
372 | struct ReferenceType { TypeRef } | 414 | struct ReferenceType { Amp, Lifetime, MutKw, TypeRef } |
373 | struct PlaceholderType { } | 415 | struct PlaceholderType { Underscore } |
374 | struct FnPointerType { ParamList, RetType } | 416 | struct FnPointerType { Abi, UnsafeKw, FnKw, ParamList, RetType } |
375 | struct ForType { TypeRef } | 417 | struct ForType { ForKw, TypeParamList, TypeRef } |
376 | struct ImplTraitType: TypeBoundsOwner {} | 418 | struct ImplTraitType: TypeBoundsOwner { ImplKw } |
377 | struct DynTraitType: TypeBoundsOwner {} | 419 | struct DynTraitType: TypeBoundsOwner { DynKw } |
378 | 420 | ||
379 | struct TupleExpr { exprs: [Expr] } | 421 | struct TupleExpr: AttrsOwner { LParen, exprs: [Expr], RParen } |
380 | struct ArrayExpr { exprs: [Expr] } | 422 | struct ArrayExpr: AttrsOwner { LBrack, exprs: [Expr], Semi, RBrack } |
381 | struct ParenExpr { Expr } | 423 | struct ParenExpr: AttrsOwner { LParen, Expr, RParen } |
382 | struct PathExpr { Path } | 424 | struct PathExpr { Path } |
383 | struct LambdaExpr { | 425 | struct LambdaExpr: AttrsOwner { |
426 | StaticKw, | ||
427 | AsyncKw, | ||
428 | MoveKw, | ||
384 | ParamList, | 429 | ParamList, |
385 | RetType, | 430 | RetType, |
386 | body: Expr, | 431 | body: Expr, |
387 | } | 432 | } |
388 | struct IfExpr { Condition } | 433 | struct IfExpr: AttrsOwner { IfKw, Condition } |
389 | struct LoopExpr: LoopBodyOwner { } | 434 | struct LoopExpr: AttrsOwner, LoopBodyOwner { LoopKw } |
390 | struct TryBlockExpr { body: BlockExpr } | 435 | struct TryBlockExpr: AttrsOwner { TryKw, body: BlockExpr } |
391 | struct ForExpr: LoopBodyOwner { | 436 | struct ForExpr: AttrsOwner, LoopBodyOwner { |
437 | ForKw, | ||
392 | Pat, | 438 | Pat, |
439 | InKw, | ||
393 | iterable: Expr, | 440 | iterable: Expr, |
394 | } | 441 | } |
395 | struct WhileExpr: LoopBodyOwner { Condition } | 442 | struct WhileExpr: AttrsOwner, LoopBodyOwner { WhileKw, Condition } |
396 | struct ContinueExpr {} | 443 | struct ContinueExpr: AttrsOwner { ContinueKw, Lifetime } |
397 | struct BreakExpr { Expr } | 444 | struct BreakExpr: AttrsOwner { BreakKw, Lifetime, Expr } |
398 | struct Label {} | 445 | struct Label { Lifetime } |
399 | struct BlockExpr { Block } | 446 | struct BlockExpr: AttrsOwner { Label, UnsafeKw, Block } |
400 | struct ReturnExpr { Expr } | 447 | struct ReturnExpr: AttrsOwner { Expr } |
401 | struct CallExpr: ArgListOwner { Expr } | 448 | struct CallExpr: ArgListOwner { Expr } |
402 | struct MethodCallExpr: ArgListOwner { | 449 | struct MethodCallExpr: AttrsOwner, ArgListOwner { |
403 | Expr, NameRef, TypeArgList, | 450 | Expr, Dot, NameRef, TypeArgList, |
404 | } | 451 | } |
405 | struct IndexExpr {} | 452 | struct IndexExpr: AttrsOwner { LBrack, RBrack } |
406 | struct FieldExpr { Expr, NameRef } | 453 | struct FieldExpr: AttrsOwner { Expr, Dot, NameRef } |
407 | struct AwaitExpr { Expr } | 454 | struct AwaitExpr: AttrsOwner { Expr, Dot, AwaitKw } |
408 | struct TryExpr { Expr } | 455 | struct TryExpr: AttrsOwner { TryKw, Expr } |
409 | struct CastExpr { Expr, TypeRef } | 456 | struct CastExpr: AttrsOwner { Expr, AsKw, TypeRef } |
410 | struct RefExpr { Expr } | 457 | struct RefExpr: AttrsOwner { Amp, RawKw, MutKw, Expr } |
411 | struct PrefixExpr { Expr } | 458 | struct PrefixExpr: AttrsOwner { PrefixOp, Expr } |
412 | struct BoxExpr { Expr } | 459 | struct BoxExpr: AttrsOwner { BoxKw, Expr } |
413 | struct RangeExpr {} | 460 | struct RangeExpr: AttrsOwner { RangeOp } |
414 | struct BinExpr {} | 461 | struct BinExpr: AttrsOwner { BinOp } |
415 | struct Literal {} | 462 | struct Literal { LiteralToken } |
416 | 463 | ||
417 | struct MatchExpr { Expr, MatchArmList } | 464 | struct MatchExpr: AttrsOwner { MatchKw, Expr, MatchArmList } |
418 | struct MatchArmList: AttrsOwner { arms: [MatchArm] } | 465 | struct MatchArmList: AttrsOwner { LCurly, arms: [MatchArm], RCurly } |
419 | struct MatchArm: AttrsOwner { | 466 | struct MatchArm: AttrsOwner { |
420 | pat: Pat, | 467 | pat: Pat, |
421 | guard: MatchGuard, | 468 | guard: MatchGuard, |
469 | FatArrow, | ||
422 | Expr, | 470 | Expr, |
423 | } | 471 | } |
424 | struct MatchGuard { Expr } | 472 | struct MatchGuard { IfKw, Expr } |
425 | 473 | ||
426 | struct RecordLit { Path, RecordFieldList } | 474 | struct RecordLit { Path, RecordFieldList} |
427 | struct RecordFieldList { | 475 | struct RecordFieldList { |
476 | LCurly, | ||
428 | fields: [RecordField], | 477 | fields: [RecordField], |
478 | Dotdot, | ||
429 | spread: Expr, | 479 | spread: Expr, |
480 | RCurly | ||
430 | } | 481 | } |
431 | struct RecordField { NameRef, Expr } | 482 | struct RecordField: AttrsOwner { NameRef, Colon, Expr } |
432 | 483 | ||
433 | struct OrPat { pats: [Pat] } | 484 | struct OrPat { pats: [Pat] } |
434 | struct ParenPat { Pat } | 485 | struct ParenPat { LParen, Pat, RParen } |
435 | struct RefPat { Pat } | 486 | struct RefPat { Amp, MutKw, Pat } |
436 | struct BoxPat { Pat } | 487 | struct BoxPat { BoxKw, Pat } |
437 | struct BindPat: NameOwner { Pat } | 488 | struct BindPat: AttrsOwner, NameOwner { RefKw, MutKw, At, Pat } |
438 | struct PlaceholderPat { } | 489 | struct PlaceholderPat { Underscore } |
439 | struct DotDotPat { } | 490 | struct DotDotPat { Dotdot } |
440 | struct PathPat { Path } | 491 | struct PathPat { Path } |
441 | struct SlicePat { args: [Pat] } | 492 | struct SlicePat { LBrack, args: [Pat], RBrack } |
442 | struct RangePat {} | 493 | struct RangePat { RangeSeparator } |
443 | struct LiteralPat { Literal } | 494 | struct LiteralPat { Literal } |
444 | struct MacroPat { MacroCall } | 495 | struct MacroPat { MacroCall } |
445 | 496 | ||
446 | struct RecordPat { RecordFieldPatList, Path } | 497 | struct RecordPat { RecordFieldPatList, Path } |
447 | struct RecordFieldPatList { | 498 | struct RecordFieldPatList { |
499 | LCurly, | ||
500 | pats: [RecordInnerPat], | ||
448 | record_field_pats: [RecordFieldPat], | 501 | record_field_pats: [RecordFieldPat], |
449 | bind_pats: [BindPat], | 502 | bind_pats: [BindPat], |
503 | Dotdot, | ||
504 | RCurly | ||
450 | } | 505 | } |
451 | struct RecordFieldPat: NameOwner { Pat } | 506 | struct RecordFieldPat: AttrsOwner, NameOwner { Colon, Pat } |
452 | 507 | ||
453 | struct TupleStructPat { Path, args: [Pat] } | 508 | struct TupleStructPat { Path, LParen, args: [Pat], RParen } |
454 | struct TuplePat { args: [Pat] } | 509 | struct TuplePat { LParen, args: [Pat], RParen } |
455 | 510 | ||
456 | struct Visibility {} | 511 | struct Visibility { PubKw, SuperKw, SelfKw, CrateKw } |
457 | struct Name {} | 512 | struct Name { Ident } |
458 | struct NameRef {} | 513 | struct NameRef { NameRefToken } |
459 | 514 | ||
460 | struct MacroCall: NameOwner, AttrsOwner,DocCommentsOwner { | 515 | struct MacroCall: NameOwner, AttrsOwner,DocCommentsOwner { |
461 | TokenTree, Path | 516 | Path, Excl, TokenTree, Semi |
462 | } | 517 | } |
463 | struct Attr { Path, input: AttrInput } | 518 | struct Attr { Pound, Excl, LBrack, Path, Eq, input: AttrInput, RBrack } |
464 | struct TokenTree {} | 519 | struct TokenTree {} |
465 | struct TypeParamList { | 520 | struct TypeParamList { |
521 | LAngle, | ||
522 | generic_params: [GenericParam], | ||
466 | type_params: [TypeParam], | 523 | type_params: [TypeParam], |
467 | lifetime_params: [LifetimeParam], | 524 | lifetime_params: [LifetimeParam], |
525 | const_params: [ConstParam], | ||
526 | RAngle | ||
468 | } | 527 | } |
469 | struct TypeParam: NameOwner, AttrsOwner, TypeBoundsOwner { | 528 | struct TypeParam: NameOwner, AttrsOwner, TypeBoundsOwner { |
529 | Eq, | ||
470 | default_type: TypeRef, | 530 | default_type: TypeRef, |
471 | } | 531 | } |
472 | struct ConstParam: NameOwner, AttrsOwner, TypeAscriptionOwner { | 532 | struct ConstParam: NameOwner, AttrsOwner, TypeAscriptionOwner { |
533 | Eq, | ||
473 | default_val: Expr, | 534 | default_val: Expr, |
474 | } | 535 | } |
475 | struct LifetimeParam: AttrsOwner { } | 536 | struct LifetimeParam: AttrsOwner { Lifetime} |
476 | struct TypeBound { TypeRef} | 537 | struct TypeBound { Lifetime, /* Question, */ ConstKw, /* Question, */ TypeRef} |
477 | struct TypeBoundList { bounds: [TypeBound] } | 538 | struct TypeBoundList { bounds: [TypeBound] } |
478 | struct WherePred: TypeBoundsOwner { TypeRef } | 539 | struct WherePred: TypeBoundsOwner { Lifetime, TypeRef } |
479 | struct WhereClause { predicates: [WherePred] } | 540 | struct WhereClause { WhereKw, predicates: [WherePred] } |
480 | struct ExprStmt { Expr } | 541 | struct Abi { String } |
481 | struct LetStmt: TypeAscriptionOwner { | 542 | struct ExprStmt: AttrsOwner { Expr, Semi } |
543 | struct LetStmt: AttrsOwner, TypeAscriptionOwner { | ||
544 | LetKw, | ||
482 | Pat, | 545 | Pat, |
546 | Eq, | ||
483 | initializer: Expr, | 547 | initializer: Expr, |
548 | Semi, | ||
484 | } | 549 | } |
485 | struct Condition { Pat, Expr } | 550 | struct Condition { LetKw, Pat, Eq, Expr } |
486 | struct Block: AttrsOwner, ModuleItemOwner { | 551 | struct Block: AttrsOwner, ModuleItemOwner { |
552 | LCurly, | ||
487 | statements: [Stmt], | 553 | statements: [Stmt], |
488 | Expr, | 554 | Expr, |
555 | RCurly, | ||
489 | } | 556 | } |
490 | struct ParamList { | 557 | struct ParamList { |
558 | LParen, | ||
491 | SelfParam, | 559 | SelfParam, |
492 | params: [Param], | 560 | params: [Param], |
561 | RParen | ||
493 | } | 562 | } |
494 | struct SelfParam: TypeAscriptionOwner, AttrsOwner { } | 563 | struct SelfParam: TypeAscriptionOwner, AttrsOwner { Amp, Lifetime, SelfKw } |
495 | struct Param: TypeAscriptionOwner, AttrsOwner { | 564 | struct Param: TypeAscriptionOwner, AttrsOwner { |
496 | Pat, | 565 | Pat, |
566 | Dotdotdot | ||
497 | } | 567 | } |
498 | struct UseItem: AttrsOwner, VisibilityOwner { | 568 | struct UseItem: AttrsOwner, VisibilityOwner { |
569 | UseKw, | ||
499 | UseTree, | 570 | UseTree, |
500 | } | 571 | } |
501 | struct UseTree { | 572 | struct UseTree { |
502 | Path, UseTreeList, Alias | 573 | Path, Star, UseTreeList, Alias |
503 | } | 574 | } |
504 | struct Alias: NameOwner { } | 575 | struct Alias: NameOwner { AsKw } |
505 | struct UseTreeList { use_trees: [UseTree] } | 576 | struct UseTreeList { LCurly, use_trees: [UseTree], RCurly } |
506 | struct ExternCrateItem: AttrsOwner, VisibilityOwner { | 577 | struct ExternCrateItem: AttrsOwner, VisibilityOwner { |
507 | NameRef, Alias, | 578 | ExternKw, CrateKw, NameRef, Alias, |
508 | } | 579 | } |
509 | struct ArgList { | 580 | struct ArgList { |
581 | LParen, | ||
510 | args: [Expr], | 582 | args: [Expr], |
583 | RParen | ||
511 | } | 584 | } |
512 | struct Path { | 585 | struct Path { |
513 | segment: PathSegment, | 586 | segment: PathSegment, |
514 | qualifier: Path, | 587 | qualifier: Path, |
515 | } | 588 | } |
516 | struct PathSegment { | 589 | struct PathSegment { |
517 | NameRef, TypeArgList, ParamList, RetType, PathType, | 590 | Coloncolon, LAngle, NameRef, TypeArgList, ParamList, RetType, PathType, RAngle |
518 | } | 591 | } |
519 | struct TypeArgList { | 592 | struct TypeArgList { |
593 | Coloncolon, | ||
594 | LAngle, | ||
595 | generic_args: [GenericArg], | ||
520 | type_args: [TypeArg], | 596 | type_args: [TypeArg], |
521 | lifetime_args: [LifetimeArg], | 597 | lifetime_args: [LifetimeArg], |
522 | assoc_type_args: [AssocTypeArg], | 598 | assoc_type_args: [AssocTypeArg], |
523 | const_arg: [ConstArg], | 599 | const_args: [ConstArg], |
600 | RAngle | ||
524 | } | 601 | } |
525 | struct TypeArg { TypeRef } | 602 | struct TypeArg { TypeRef } |
526 | struct AssocTypeArg { NameRef, TypeRef } | 603 | struct AssocTypeArg : TypeBoundsOwner { NameRef, Eq, TypeRef } |
527 | struct LifetimeArg {} | 604 | struct LifetimeArg { Lifetime } |
528 | struct ConstArg { Literal, BlockExpr } | 605 | struct ConstArg { Literal, Eq, BlockExpr } |
529 | 606 | ||
530 | struct MacroItems: ModuleItemOwner, FnDefOwner { } | 607 | struct MacroItems: ModuleItemOwner, FnDefOwner { } |
531 | 608 | ||
@@ -533,12 +610,44 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
533 | statements: [Stmt], | 610 | statements: [Stmt], |
534 | Expr, | 611 | Expr, |
535 | } | 612 | } |
613 | |||
614 | struct ExternItemList: FnDefOwner, ModuleItemOwner { | ||
615 | LCurly, | ||
616 | extern_items: [ExternItem], | ||
617 | RCurly | ||
618 | } | ||
619 | |||
620 | struct ExternBlock { | ||
621 | Abi, | ||
622 | ExternItemList | ||
623 | } | ||
624 | |||
625 | struct MetaItem { | ||
626 | Path, Eq, AttrInput, nested_meta_items: [MetaItem] | ||
627 | } | ||
628 | |||
629 | struct MacroDef { | ||
630 | Name, TokenTree | ||
631 | } | ||
536 | }, | 632 | }, |
537 | enums: &ast_enums! { | 633 | enums: &ast_enums! { |
538 | enum NominalDef: NameOwner, TypeParamsOwner, AttrsOwner { | 634 | enum NominalDef: NameOwner, TypeParamsOwner, AttrsOwner { |
539 | StructDef, EnumDef, UnionDef, | 635 | StructDef, EnumDef, UnionDef, |
540 | } | 636 | } |
541 | 637 | ||
638 | enum GenericParam { | ||
639 | LifetimeParam, | ||
640 | TypeParam, | ||
641 | ConstParam | ||
642 | } | ||
643 | |||
644 | enum GenericArg { | ||
645 | LifetimeArg, | ||
646 | TypeArg, | ||
647 | ConstArg, | ||
648 | AssocTypeArg | ||
649 | } | ||
650 | |||
542 | enum TypeRef { | 651 | enum TypeRef { |
543 | ParenType, | 652 | ParenType, |
544 | TupleType, | 653 | TupleType, |
@@ -555,7 +664,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
555 | DynTraitType, | 664 | DynTraitType, |
556 | } | 665 | } |
557 | 666 | ||
558 | enum ModuleItem: AttrsOwner, VisibilityOwner { | 667 | enum ModuleItem: NameOwner, AttrsOwner, VisibilityOwner { |
559 | StructDef, | 668 | StructDef, |
560 | UnionDef, | 669 | UnionDef, |
561 | EnumDef, | 670 | EnumDef, |
@@ -569,13 +678,20 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
569 | StaticDef, | 678 | StaticDef, |
570 | Module, | 679 | Module, |
571 | MacroCall, | 680 | MacroCall, |
681 | ExternBlock | ||
572 | } | 682 | } |
573 | 683 | ||
574 | enum ImplItem: AttrsOwner { | 684 | /* impl blocks can also contain MacroCall */ |
575 | FnDef, TypeAliasDef, ConstDef, | 685 | enum ImplItem: NameOwner, AttrsOwner { |
686 | FnDef, TypeAliasDef, ConstDef | ||
576 | } | 687 | } |
577 | 688 | ||
578 | enum Expr { | 689 | /* extern blocks can also contain MacroCall */ |
690 | enum ExternItem: NameOwner, AttrsOwner, VisibilityOwner { | ||
691 | FnDef, StaticDef | ||
692 | } | ||
693 | |||
694 | enum Expr: AttrsOwner { | ||
579 | TupleExpr, | 695 | TupleExpr, |
580 | ArrayExpr, | 696 | ArrayExpr, |
581 | ParenExpr, | 697 | ParenExpr, |
@@ -627,7 +743,88 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
627 | MacroPat, | 743 | MacroPat, |
628 | } | 744 | } |
629 | 745 | ||
746 | enum RecordInnerPat { | ||
747 | RecordFieldPat, | ||
748 | BindPat | ||
749 | } | ||
750 | |||
630 | enum AttrInput { Literal, TokenTree } | 751 | enum AttrInput { Literal, TokenTree } |
631 | enum Stmt { ExprStmt, LetStmt } | 752 | enum Stmt { |
753 | LetStmt, | ||
754 | ExprStmt, | ||
755 | // macro calls are parsed as expression statements */ | ||
756 | } | ||
757 | |||
758 | enum FieldDefList { | ||
759 | RecordFieldDefList, | ||
760 | TupleFieldDefList, | ||
761 | } | ||
762 | }, | ||
763 | |||
764 | token_enums: &ast_enums! { | ||
765 | enum LeftDelimiter { LParen, LBrack, LCurly } | ||
766 | enum RightDelimiter { RParen, RBrack, RCurly } | ||
767 | enum RangeSeparator { Dotdot, Dotdotdot, Dotdoteq} | ||
768 | |||
769 | enum BinOp { | ||
770 | Pipepipe, | ||
771 | Ampamp, | ||
772 | Eqeq, | ||
773 | Neq, | ||
774 | Lteq, | ||
775 | Gteq, | ||
776 | LAngle, | ||
777 | RAngle, | ||
778 | Plus, | ||
779 | Star, | ||
780 | Minus, | ||
781 | Slash, | ||
782 | Percent, | ||
783 | Shl, | ||
784 | Shr, | ||
785 | Caret, | ||
786 | Pipe, | ||
787 | Amp, | ||
788 | Eq, | ||
789 | Pluseq, | ||
790 | Slasheq, | ||
791 | Stareq, | ||
792 | Percenteq, | ||
793 | Shreq, | ||
794 | Shleq, | ||
795 | Minuseq, | ||
796 | Pipeeq, | ||
797 | Ampeq, | ||
798 | Careteq, | ||
799 | } | ||
800 | |||
801 | enum PrefixOp { | ||
802 | Minus, | ||
803 | Excl, | ||
804 | Star | ||
805 | } | ||
806 | |||
807 | enum RangeOp { | ||
808 | Dotdot, | ||
809 | Dotdoteq | ||
810 | } | ||
811 | |||
812 | enum LiteralToken { | ||
813 | IntNumber, | ||
814 | FloatNumber, | ||
815 | String, | ||
816 | RawString, | ||
817 | TrueKw, | ||
818 | FalseKw, | ||
819 | ByteString, | ||
820 | RawByteString, | ||
821 | Char, | ||
822 | Byte | ||
823 | } | ||
824 | |||
825 | enum NameRefToken { | ||
826 | Ident, | ||
827 | IntNumber | ||
828 | } | ||
632 | }, | 829 | }, |
633 | }; | 830 | }; |
diff --git a/xtask/src/codegen.rs b/xtask/src/codegen.rs index a53d57335..678b40133 100644 --- a/xtask/src/codegen.rs +++ b/xtask/src/codegen.rs | |||
@@ -22,8 +22,9 @@ const GRAMMAR_DIR: &str = "crates/ra_parser/src/grammar"; | |||
22 | const OK_INLINE_TESTS_DIR: &str = "crates/ra_syntax/test_data/parser/inline/ok"; | 22 | const OK_INLINE_TESTS_DIR: &str = "crates/ra_syntax/test_data/parser/inline/ok"; |
23 | const ERR_INLINE_TESTS_DIR: &str = "crates/ra_syntax/test_data/parser/inline/err"; | 23 | const ERR_INLINE_TESTS_DIR: &str = "crates/ra_syntax/test_data/parser/inline/err"; |
24 | 24 | ||
25 | pub const SYNTAX_KINDS: &str = "crates/ra_parser/src/syntax_kind/generated.rs"; | 25 | const SYNTAX_KINDS: &str = "crates/ra_parser/src/syntax_kind/generated.rs"; |
26 | pub const AST: &str = "crates/ra_syntax/src/ast/generated.rs"; | 26 | const AST_NODES: &str = "crates/ra_syntax/src/ast/generated/nodes.rs"; |
27 | const AST_TOKENS: &str = "crates/ra_syntax/src/ast/generated/tokens.rs"; | ||
27 | 28 | ||
28 | const ASSISTS_DIR: &str = "crates/ra_assists/src/handlers"; | 29 | const ASSISTS_DIR: &str = "crates/ra_assists/src/handlers"; |
29 | const ASSISTS_TESTS: &str = "crates/ra_assists/src/doc_tests/generated.rs"; | 30 | const ASSISTS_TESTS: &str = "crates/ra_assists/src/doc_tests/generated.rs"; |
diff --git a/xtask/src/codegen/gen_syntax.rs b/xtask/src/codegen/gen_syntax.rs index 32afd47bc..b5594e3a9 100644 --- a/xtask/src/codegen/gen_syntax.rs +++ b/xtask/src/codegen/gen_syntax.rs | |||
@@ -3,6 +3,11 @@ | |||
3 | //! Specifically, it generates the `SyntaxKind` enum and a number of newtype | 3 | //! Specifically, it generates the `SyntaxKind` enum and a number of newtype |
4 | //! wrappers around `SyntaxNode` which implement `ra_syntax::AstNode`. | 4 | //! wrappers around `SyntaxNode` which implement `ra_syntax::AstNode`. |
5 | 5 | ||
6 | use std::{ | ||
7 | borrow::Cow, | ||
8 | collections::{BTreeSet, HashSet}, | ||
9 | }; | ||
10 | |||
6 | use proc_macro2::{Punct, Spacing}; | 11 | use proc_macro2::{Punct, Spacing}; |
7 | use quote::{format_ident, quote}; | 12 | use quote::{format_ident, quote}; |
8 | 13 | ||
@@ -17,14 +22,161 @@ pub fn generate_syntax(mode: Mode) -> Result<()> { | |||
17 | let syntax_kinds = generate_syntax_kinds(KINDS_SRC)?; | 22 | let syntax_kinds = generate_syntax_kinds(KINDS_SRC)?; |
18 | update(syntax_kinds_file.as_path(), &syntax_kinds, mode)?; | 23 | update(syntax_kinds_file.as_path(), &syntax_kinds, mode)?; |
19 | 24 | ||
20 | let ast_file = project_root().join(codegen::AST); | 25 | let ast_nodes_file = project_root().join(codegen::AST_NODES); |
21 | let ast = generate_ast(AST_SRC)?; | 26 | let contents = generate_nodes(KINDS_SRC, AST_SRC)?; |
22 | update(ast_file.as_path(), &ast, mode)?; | 27 | update(ast_nodes_file.as_path(), &contents, mode)?; |
28 | |||
29 | let ast_tokens_file = project_root().join(codegen::AST_TOKENS); | ||
30 | let contents = generate_tokens(KINDS_SRC, AST_SRC)?; | ||
31 | update(ast_tokens_file.as_path(), &contents, mode)?; | ||
23 | 32 | ||
24 | Ok(()) | 33 | Ok(()) |
25 | } | 34 | } |
26 | 35 | ||
27 | fn generate_ast(grammar: AstSrc<'_>) -> Result<String> { | 36 | #[derive(Debug, Default, Clone)] |
37 | struct ElementKinds { | ||
38 | kinds: BTreeSet<proc_macro2::Ident>, | ||
39 | has_nodes: bool, | ||
40 | has_tokens: bool, | ||
41 | } | ||
42 | |||
43 | fn generate_tokens(kinds: KindsSrc<'_>, grammar: AstSrc<'_>) -> Result<String> { | ||
44 | let all_token_kinds: Vec<_> = kinds | ||
45 | .punct | ||
46 | .into_iter() | ||
47 | .map(|(_, kind)| kind) | ||
48 | .copied() | ||
49 | .map(|x| x.into()) | ||
50 | .chain( | ||
51 | kinds | ||
52 | .keywords | ||
53 | .into_iter() | ||
54 | .chain(kinds.contextual_keywords.into_iter()) | ||
55 | .map(|name| Cow::Owned(format!("{}_KW", to_upper_snake_case(&name)))), | ||
56 | ) | ||
57 | .chain(kinds.literals.into_iter().copied().map(|x| x.into())) | ||
58 | .chain(kinds.tokens.into_iter().copied().map(|x| x.into())) | ||
59 | .collect(); | ||
60 | |||
61 | let tokens = all_token_kinds.iter().map(|kind_str| { | ||
62 | let kind_str = &**kind_str; | ||
63 | let kind = format_ident!("{}", kind_str); | ||
64 | let name = format_ident!("{}", to_pascal_case(kind_str)); | ||
65 | quote! { | ||
66 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
67 | pub struct #name { | ||
68 | pub(crate) syntax: SyntaxToken, | ||
69 | } | ||
70 | |||
71 | impl std::fmt::Display for #name { | ||
72 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
73 | std::fmt::Display::fmt(&self.syntax, f) | ||
74 | } | ||
75 | } | ||
76 | |||
77 | impl AstToken for #name { | ||
78 | fn can_cast(kind: SyntaxKind) -> bool { kind == #kind } | ||
79 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
80 | if Self::can_cast(syntax.kind()) { Some(Self { syntax }) } else { None } | ||
81 | } | ||
82 | fn syntax(&self) -> &SyntaxToken { &self.syntax } | ||
83 | } | ||
84 | } | ||
85 | }); | ||
86 | |||
87 | let enums = grammar.token_enums.iter().map(|en| { | ||
88 | let variants = en.variants.iter().map(|var| format_ident!("{}", var)).collect::<Vec<_>>(); | ||
89 | let name = format_ident!("{}", en.name); | ||
90 | let kinds = variants | ||
91 | .iter() | ||
92 | .map(|name| format_ident!("{}", to_upper_snake_case(&name.to_string()))) | ||
93 | .collect::<Vec<_>>(); | ||
94 | assert!(en.traits.is_empty()); | ||
95 | |||
96 | quote! { | ||
97 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
98 | pub enum #name { | ||
99 | #(#variants(#variants),)* | ||
100 | } | ||
101 | |||
102 | #( | ||
103 | impl From<#variants> for #name { | ||
104 | fn from(node: #variants) -> #name { | ||
105 | #name::#variants(node) | ||
106 | } | ||
107 | } | ||
108 | )* | ||
109 | |||
110 | impl std::fmt::Display for #name { | ||
111 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
112 | std::fmt::Display::fmt(self.syntax(), f) | ||
113 | } | ||
114 | } | ||
115 | |||
116 | impl AstToken for #name { | ||
117 | fn can_cast(kind: SyntaxKind) -> bool { | ||
118 | match kind { | ||
119 | #(#kinds)|* => true, | ||
120 | _ => false, | ||
121 | } | ||
122 | } | ||
123 | fn cast(syntax: SyntaxToken) -> Option<Self> { | ||
124 | let res = match syntax.kind() { | ||
125 | #( | ||
126 | #kinds => #name::#variants(#variants { syntax }), | ||
127 | )* | ||
128 | _ => return None, | ||
129 | }; | ||
130 | Some(res) | ||
131 | } | ||
132 | fn syntax(&self) -> &SyntaxToken { | ||
133 | match self { | ||
134 | #( | ||
135 | #name::#variants(it) => &it.syntax, | ||
136 | )* | ||
137 | } | ||
138 | } | ||
139 | } | ||
140 | } | ||
141 | }); | ||
142 | |||
143 | crate::reformat(quote! { | ||
144 | use crate::{SyntaxToken, SyntaxKind::{self, *}, ast::AstToken}; | ||
145 | |||
146 | #(#tokens)* | ||
147 | #(#enums)* | ||
148 | }) | ||
149 | } | ||
150 | |||
151 | fn generate_nodes(kinds: KindsSrc<'_>, grammar: AstSrc<'_>) -> Result<String> { | ||
152 | let all_token_kinds: Vec<_> = kinds | ||
153 | .punct | ||
154 | .into_iter() | ||
155 | .map(|(_, kind)| kind) | ||
156 | .copied() | ||
157 | .map(|x| x.into()) | ||
158 | .chain( | ||
159 | kinds | ||
160 | .keywords | ||
161 | .into_iter() | ||
162 | .chain(kinds.contextual_keywords.into_iter()) | ||
163 | .map(|name| Cow::Owned(format!("{}_KW", to_upper_snake_case(&name)))), | ||
164 | ) | ||
165 | .chain(kinds.literals.into_iter().copied().map(|x| x.into())) | ||
166 | .chain(kinds.tokens.into_iter().copied().map(|x| x.into())) | ||
167 | .collect(); | ||
168 | |||
169 | let mut token_kinds = HashSet::new(); | ||
170 | for kind in &all_token_kinds { | ||
171 | let kind = &**kind; | ||
172 | let name = to_pascal_case(kind); | ||
173 | token_kinds.insert(name); | ||
174 | } | ||
175 | |||
176 | for en in grammar.token_enums { | ||
177 | token_kinds.insert(en.name.to_string()); | ||
178 | } | ||
179 | |||
28 | let nodes = grammar.nodes.iter().map(|node| { | 180 | let nodes = grammar.nodes.iter().map(|node| { |
29 | let name = format_ident!("{}", node.name); | 181 | let name = format_ident!("{}", node.name); |
30 | let kind = format_ident!("{}", to_upper_snake_case(&name.to_string())); | 182 | let kind = format_ident!("{}", to_upper_snake_case(&name.to_string())); |
@@ -42,20 +194,31 @@ fn generate_ast(grammar: AstSrc<'_>) -> Result<String> { | |||
42 | FieldSrc::Optional(ty) | FieldSrc::Many(ty) => ty, | 194 | FieldSrc::Optional(ty) | FieldSrc::Many(ty) => ty, |
43 | FieldSrc::Shorthand => name, | 195 | FieldSrc::Shorthand => name, |
44 | }; | 196 | }; |
197 | |||
45 | let ty = format_ident!("{}", ty); | 198 | let ty = format_ident!("{}", ty); |
46 | 199 | ||
47 | match field { | 200 | match field { |
48 | FieldSrc::Many(_) => { | 201 | FieldSrc::Many(_) => { |
49 | quote! { | 202 | quote! { |
50 | pub fn #method_name(&self) -> AstChildren<#ty> { | 203 | pub fn #method_name(&self) -> AstChildren<#ty> { |
51 | AstChildren::new(&self.syntax) | 204 | support::children(&self.syntax) |
52 | } | 205 | } |
53 | } | 206 | } |
54 | } | 207 | } |
55 | FieldSrc::Optional(_) | FieldSrc::Shorthand => { | 208 | FieldSrc::Optional(_) | FieldSrc::Shorthand => { |
56 | quote! { | 209 | let is_token = token_kinds.contains(&ty.to_string()); |
57 | pub fn #method_name(&self) -> Option<#ty> { | 210 | if is_token { |
58 | AstChildren::new(&self.syntax).next() | 211 | let method_name = format_ident!("{}_token", method_name); |
212 | quote! { | ||
213 | pub fn #method_name(&self) -> Option<#ty> { | ||
214 | support::token(&self.syntax) | ||
215 | } | ||
216 | } | ||
217 | } else { | ||
218 | quote! { | ||
219 | pub fn #method_name(&self) -> Option<#ty> { | ||
220 | support::child(&self.syntax) | ||
221 | } | ||
59 | } | 222 | } |
60 | } | 223 | } |
61 | } | 224 | } |
@@ -68,24 +231,16 @@ fn generate_ast(grammar: AstSrc<'_>) -> Result<String> { | |||
68 | pub(crate) syntax: SyntaxNode, | 231 | pub(crate) syntax: SyntaxNode, |
69 | } | 232 | } |
70 | 233 | ||
71 | impl std::fmt::Display for #name { | ||
72 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
73 | std::fmt::Display::fmt(self.syntax(), f) | ||
74 | } | ||
75 | } | ||
76 | |||
77 | impl AstNode for #name { | 234 | impl AstNode for #name { |
78 | fn can_cast(kind: SyntaxKind) -> bool { | 235 | fn can_cast(kind: SyntaxKind) -> bool { |
79 | match kind { | 236 | kind == #kind |
80 | #kind => true, | ||
81 | _ => false, | ||
82 | } | ||
83 | } | 237 | } |
84 | fn cast(syntax: SyntaxNode) -> Option<Self> { | 238 | fn cast(syntax: SyntaxNode) -> Option<Self> { |
85 | if Self::can_cast(syntax.kind()) { Some(Self { syntax }) } else { None } | 239 | if Self::can_cast(syntax.kind()) { Some(Self { syntax }) } else { None } |
86 | } | 240 | } |
87 | fn syntax(&self) -> &SyntaxNode { &self.syntax } | 241 | fn syntax(&self) -> &SyntaxNode { &self.syntax } |
88 | } | 242 | } |
243 | |||
89 | #(#traits)* | 244 | #(#traits)* |
90 | 245 | ||
91 | impl #name { | 246 | impl #name { |
@@ -120,12 +275,6 @@ fn generate_ast(grammar: AstSrc<'_>) -> Result<String> { | |||
120 | } | 275 | } |
121 | )* | 276 | )* |
122 | 277 | ||
123 | impl std::fmt::Display for #name { | ||
124 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
125 | std::fmt::Display::fmt(self.syntax(), f) | ||
126 | } | ||
127 | } | ||
128 | |||
129 | impl AstNode for #name { | 278 | impl AstNode for #name { |
130 | fn can_cast(kind: SyntaxKind) -> bool { | 279 | fn can_cast(kind: SyntaxKind) -> bool { |
131 | match kind { | 280 | match kind { |
@@ -150,18 +299,48 @@ fn generate_ast(grammar: AstSrc<'_>) -> Result<String> { | |||
150 | } | 299 | } |
151 | } | 300 | } |
152 | } | 301 | } |
302 | |||
153 | #(#traits)* | 303 | #(#traits)* |
154 | } | 304 | } |
155 | }); | 305 | }); |
156 | 306 | ||
307 | let displays = grammar | ||
308 | .enums | ||
309 | .iter() | ||
310 | .map(|it| format_ident!("{}", it.name)) | ||
311 | .chain(grammar.nodes.iter().map(|it| format_ident!("{}", it.name))) | ||
312 | .map(|name| { | ||
313 | quote! { | ||
314 | impl std::fmt::Display for #name { | ||
315 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
316 | std::fmt::Display::fmt(self.syntax(), f) | ||
317 | } | ||
318 | } | ||
319 | } | ||
320 | }); | ||
321 | |||
322 | let defined_nodes: HashSet<_> = grammar.nodes.iter().map(|node| node.name).collect(); | ||
323 | |||
324 | for node in kinds | ||
325 | .nodes | ||
326 | .iter() | ||
327 | .map(|kind| to_pascal_case(*kind)) | ||
328 | .filter(|name| !defined_nodes.contains(&**name)) | ||
329 | { | ||
330 | eprintln!("Warning: node {} not defined in ast source", node); | ||
331 | } | ||
332 | |||
157 | let ast = quote! { | 333 | let ast = quote! { |
158 | use crate::{ | 334 | use crate::{ |
159 | SyntaxNode, SyntaxKind::{self, *}, | 335 | SyntaxNode, SyntaxKind::{self, *}, |
160 | ast::{self, AstNode, AstChildren}, | 336 | ast::{self, AstNode, AstChildren, support}, |
161 | }; | 337 | }; |
162 | 338 | ||
339 | use super::tokens::*; | ||
340 | |||
163 | #(#nodes)* | 341 | #(#nodes)* |
164 | #(#enums)* | 342 | #(#enums)* |
343 | #(#displays)* | ||
165 | }; | 344 | }; |
166 | 345 | ||
167 | let pretty = crate::reformat(ast)?; | 346 | let pretty = crate::reformat(ast)?; |
@@ -282,12 +461,12 @@ fn generate_syntax_kinds(grammar: KindsSrc<'_>) -> Result<String> { | |||
282 | 461 | ||
283 | fn to_upper_snake_case(s: &str) -> String { | 462 | fn to_upper_snake_case(s: &str) -> String { |
284 | let mut buf = String::with_capacity(s.len()); | 463 | let mut buf = String::with_capacity(s.len()); |
285 | let mut prev_is_upper = None; | 464 | let mut prev = false; |
286 | for c in s.chars() { | 465 | for c in s.chars() { |
287 | if c.is_ascii_uppercase() && prev_is_upper == Some(false) { | 466 | if c.is_ascii_uppercase() && prev { |
288 | buf.push('_') | 467 | buf.push('_') |
289 | } | 468 | } |
290 | prev_is_upper = Some(c.is_ascii_uppercase()); | 469 | prev = true; |
291 | 470 | ||
292 | buf.push(c.to_ascii_uppercase()); | 471 | buf.push(c.to_ascii_uppercase()); |
293 | } | 472 | } |
@@ -296,14 +475,30 @@ fn to_upper_snake_case(s: &str) -> String { | |||
296 | 475 | ||
297 | fn to_lower_snake_case(s: &str) -> String { | 476 | fn to_lower_snake_case(s: &str) -> String { |
298 | let mut buf = String::with_capacity(s.len()); | 477 | let mut buf = String::with_capacity(s.len()); |
299 | let mut prev_is_upper = None; | 478 | let mut prev = false; |
300 | for c in s.chars() { | 479 | for c in s.chars() { |
301 | if c.is_ascii_uppercase() && prev_is_upper == Some(false) { | 480 | if c.is_ascii_uppercase() && prev { |
302 | buf.push('_') | 481 | buf.push('_') |
303 | } | 482 | } |
304 | prev_is_upper = Some(c.is_ascii_uppercase()); | 483 | prev = true; |
305 | 484 | ||
306 | buf.push(c.to_ascii_lowercase()); | 485 | buf.push(c.to_ascii_lowercase()); |
307 | } | 486 | } |
308 | buf | 487 | buf |
309 | } | 488 | } |
489 | |||
490 | fn to_pascal_case(s: &str) -> String { | ||
491 | let mut buf = String::with_capacity(s.len()); | ||
492 | let mut prev_is_underscore = true; | ||
493 | for c in s.chars() { | ||
494 | if c == '_' { | ||
495 | prev_is_underscore = true; | ||
496 | } else if prev_is_underscore { | ||
497 | buf.push(c.to_ascii_uppercase()); | ||
498 | prev_is_underscore = false; | ||
499 | } else { | ||
500 | buf.push(c.to_ascii_lowercase()); | ||
501 | } | ||
502 | } | ||
503 | buf | ||
504 | } | ||
diff --git a/xtask/src/lib.rs b/xtask/src/lib.rs index 9d087daa2..ec824a518 100644 --- a/xtask/src/lib.rs +++ b/xtask/src/lib.rs | |||
@@ -67,6 +67,7 @@ fn reformat(text: impl std::fmt::Display) -> Result<String> { | |||
67 | let mut rustfmt = Command::new("rustup") | 67 | let mut rustfmt = Command::new("rustup") |
68 | .args(&["run", TOOLCHAIN, "--", "rustfmt", "--config-path"]) | 68 | .args(&["run", TOOLCHAIN, "--", "rustfmt", "--config-path"]) |
69 | .arg(project_root().join("rustfmt.toml")) | 69 | .arg(project_root().join("rustfmt.toml")) |
70 | .args(&["--config", "fn_single_line=true"]) | ||
70 | .stdin(Stdio::piped()) | 71 | .stdin(Stdio::piped()) |
71 | .stdout(Stdio::piped()) | 72 | .stdout(Stdio::piped()) |
72 | .spawn()?; | 73 | .spawn()?; |