Skip to content

Commit

Permalink
refactor: make schema fields public.
Browse files Browse the repository at this point in the history
  • Loading branch information
rzvxa committed Jul 29, 2024
1 parent 66d9b7c commit af18a31
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions tasks/ast_codegen/src/defs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,38 +11,38 @@ pub enum TypeDef {

#[derive(Debug, Serialize)]
pub struct StructDef {
name: TypeName,
fields: Vec<FieldDef>,
has_lifetime: bool,
pub name: TypeName,
pub fields: Vec<FieldDef>,
pub has_lifetime: bool,
}

#[derive(Debug, Serialize)]
pub struct EnumDef {
name: TypeName,
variants: Vec<EnumVariantDef>,
pub name: TypeName,
pub variants: Vec<EnumVariantDef>,
/// For `@inherits` inherited enum variants
inherits: Vec<EnumInheritDef>,
has_lifetime: bool,
pub inherits: Vec<EnumInheritDef>,
pub has_lifetime: bool,
}

#[derive(Debug, Serialize)]
pub struct EnumVariantDef {
name: TypeName,
fields: Vec<FieldDef>,
discriminant: Option<u8>,
pub name: TypeName,
pub fields: Vec<FieldDef>,
pub discriminant: Option<u8>,
}

#[derive(Debug, Serialize)]
pub struct EnumInheritDef {
super_name: String,
variants: Vec<EnumVariantDef>,
pub super_name: String,
pub variants: Vec<EnumVariantDef>,
}

#[derive(Debug, Serialize)]
pub struct FieldDef {
/// `None` if unnamed
name: Option<String>,
r#type: TypeName,
pub name: Option<String>,
pub r#type: TypeName,
}

impl From<&RType> for Option<TypeDef> {
Expand Down

0 comments on commit af18a31

Please sign in to comment.