From 5953a348bd6102a868f303d3f732a6ec7d465833 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Tue, 14 Aug 2018 12:38:20 +0300 Subject: Less hackish impl structure --- crates/libsyntax2/src/ast/generated.rs | 292 +++++++++++++++++++++++++++++++++ 1 file changed, 292 insertions(+) (limited to 'crates/libsyntax2/src/ast/generated.rs') diff --git a/crates/libsyntax2/src/ast/generated.rs b/crates/libsyntax2/src/ast/generated.rs index 13668b803..3e6c673ab 100644 --- a/crates/libsyntax2/src/ast/generated.rs +++ b/crates/libsyntax2/src/ast/generated.rs @@ -5,6 +5,24 @@ use { SyntaxKind::*, }; +// ArrayType +#[derive(Debug, Clone, Copy)] +pub struct ArrayType> { + syntax: SyntaxNode, +} + +impl AstNode for ArrayType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + ARRAY_TYPE => Some(ArrayType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl ArrayType {} + // ConstDef #[derive(Debug, Clone, Copy)] pub struct ConstDef> { @@ -24,6 +42,24 @@ impl AstNode for ConstDef { impl ast::NameOwner for ConstDef {} impl ConstDef {} +// DynTraitType +#[derive(Debug, Clone, Copy)] +pub struct DynTraitType> { + syntax: SyntaxNode, +} + +impl AstNode for DynTraitType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + DYN_TRAIT_TYPE => Some(DynTraitType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl DynTraitType {} + // EnumDef #[derive(Debug, Clone, Copy)] pub struct EnumDef> { @@ -86,6 +122,42 @@ impl AstNode for FnDef { impl ast::NameOwner for FnDef {} impl FnDef {} +// FnPointerType +#[derive(Debug, Clone, Copy)] +pub struct FnPointerType> { + syntax: SyntaxNode, +} + +impl AstNode for FnPointerType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + FN_POINTER_TYPE => Some(FnPointerType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl FnPointerType {} + +// ForType +#[derive(Debug, Clone, Copy)] +pub struct ForType> { + syntax: SyntaxNode, +} + +impl AstNode for ForType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + FOR_TYPE => Some(ForType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl ForType {} + // ImplItem #[derive(Debug, Clone, Copy)] pub struct ImplItem> { @@ -104,6 +176,24 @@ impl AstNode for ImplItem { impl ImplItem {} +// ImplTraitType +#[derive(Debug, Clone, Copy)] +pub struct ImplTraitType> { + syntax: SyntaxNode, +} + +impl AstNode for ImplTraitType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + IMPL_TRAIT_TYPE => Some(ImplTraitType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl ImplTraitType {} + // Module #[derive(Debug, Clone, Copy)] pub struct Module> { @@ -159,6 +249,132 @@ impl AstNode for NameRef { impl NameRef {} +// NeverType +#[derive(Debug, Clone, Copy)] +pub struct NeverType> { + syntax: SyntaxNode, +} + +impl AstNode for NeverType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + NEVER_TYPE => Some(NeverType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl NeverType {} + +// ParenType +#[derive(Debug, Clone, Copy)] +pub struct ParenType> { + syntax: SyntaxNode, +} + +impl AstNode for ParenType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + PAREN_TYPE => Some(ParenType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl ParenType {} + +// PathType +#[derive(Debug, Clone, Copy)] +pub struct PathType> { + syntax: SyntaxNode, +} + +impl AstNode for PathType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + PATH_TYPE => Some(PathType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl PathType {} + +// PlaceholderType +#[derive(Debug, Clone, Copy)] +pub struct PlaceholderType> { + syntax: SyntaxNode, +} + +impl AstNode for PlaceholderType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + PLACEHOLDER_TYPE => Some(PlaceholderType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl PlaceholderType {} + +// PointerType +#[derive(Debug, Clone, Copy)] +pub struct PointerType> { + syntax: SyntaxNode, +} + +impl AstNode for PointerType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + POINTER_TYPE => Some(PointerType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl PointerType {} + +// ReferenceType +#[derive(Debug, Clone, Copy)] +pub struct ReferenceType> { + syntax: SyntaxNode, +} + +impl AstNode for ReferenceType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + REFERENCE_TYPE => Some(ReferenceType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl ReferenceType {} + +// SliceType +#[derive(Debug, Clone, Copy)] +pub struct SliceType> { + syntax: SyntaxNode, +} + +impl AstNode for SliceType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + SLICE_TYPE => Some(SliceType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl SliceType {} + // StaticDef #[derive(Debug, Clone, Copy)] pub struct StaticDef> { @@ -216,6 +432,24 @@ impl AstNode for TraitDef { impl ast::NameOwner for TraitDef {} impl TraitDef {} +// TupleType +#[derive(Debug, Clone, Copy)] +pub struct TupleType> { + syntax: SyntaxNode, +} + +impl AstNode for TupleType { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + TUPLE_TYPE => Some(TupleType { syntax }), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { &self.syntax } +} + +impl TupleType {} + // TypeDef #[derive(Debug, Clone, Copy)] pub struct TypeDef> { @@ -235,3 +469,61 @@ impl AstNode for TypeDef { impl ast::NameOwner for TypeDef {} impl TypeDef {} +// TypeRef +#[derive(Debug, Clone, Copy)] +pub enum TypeRef> { + ParenType(ParenType), + TupleType(TupleType), + NeverType(NeverType), + PathType(PathType), + PointerType(PointerType), + ArrayType(ArrayType), + SliceType(SliceType), + ReferenceType(ReferenceType), + PlaceholderType(PlaceholderType), + FnPointerType(FnPointerType), + ForType(ForType), + ImplTraitType(ImplTraitType), + DynTraitType(DynTraitType), +} + +impl AstNode for TypeRef { + fn cast(syntax: SyntaxNode) -> Option { + match syntax.kind() { + PAREN_TYPE => Some(TypeRef::ParenType(ParenType { syntax })), + TUPLE_TYPE => Some(TypeRef::TupleType(TupleType { syntax })), + NEVER_TYPE => Some(TypeRef::NeverType(NeverType { syntax })), + PATH_TYPE => Some(TypeRef::PathType(PathType { syntax })), + POINTER_TYPE => Some(TypeRef::PointerType(PointerType { syntax })), + ARRAY_TYPE => Some(TypeRef::ArrayType(ArrayType { syntax })), + SLICE_TYPE => Some(TypeRef::SliceType(SliceType { syntax })), + REFERENCE_TYPE => Some(TypeRef::ReferenceType(ReferenceType { syntax })), + PLACEHOLDER_TYPE => Some(TypeRef::PlaceholderType(PlaceholderType { syntax })), + FN_POINTER_TYPE => Some(TypeRef::FnPointerType(FnPointerType { syntax })), + FOR_TYPE => Some(TypeRef::ForType(ForType { syntax })), + IMPL_TRAIT_TYPE => Some(TypeRef::ImplTraitType(ImplTraitType { syntax })), + DYN_TRAIT_TYPE => Some(TypeRef::DynTraitType(DynTraitType { syntax })), + _ => None, + } + } + fn syntax(&self) -> &SyntaxNode { + match self { + TypeRef::ParenType(inner) => inner.syntax(), + TypeRef::TupleType(inner) => inner.syntax(), + TypeRef::NeverType(inner) => inner.syntax(), + TypeRef::PathType(inner) => inner.syntax(), + TypeRef::PointerType(inner) => inner.syntax(), + TypeRef::ArrayType(inner) => inner.syntax(), + TypeRef::SliceType(inner) => inner.syntax(), + TypeRef::ReferenceType(inner) => inner.syntax(), + TypeRef::PlaceholderType(inner) => inner.syntax(), + TypeRef::FnPointerType(inner) => inner.syntax(), + TypeRef::ForType(inner) => inner.syntax(), + TypeRef::ImplTraitType(inner) => inner.syntax(), + TypeRef::DynTraitType(inner) => inner.syntax(), + } + } +} + +impl TypeRef {} + -- cgit v1.2.3