use crate::ast::struct_declaration::StructDeclaration;
use crate::{parse_append, parse_container_node_variables, parse_container_node_variables_cleanup, parse_insert, parse_insert_keyword, parse_insert_punctuation, parse_set_identifier_and_string_path, parse_set_optional};
use crate::parser::parse_code_comment::parse_code_comment;
use crate::parser::parse_doc_comment::parse_doc_comment;
use crate::parser::parse_function_declaration::parse_function_declaration;
use crate::parser::parse_generics::{parse_generics_constraint, parse_generics_declaration};
use crate::parser::parse_span::parse_span;
use crate::parser::parser_context::ParserContext;
use crate::parser::pest_parser::{Pair, Rule};
pub(super) fn parse_struct_declaration(pair: Pair<'_>, context: &ParserContext) -> StructDeclaration {
let (
span,
path,
mut string_path,
mut children,
define_availability,
actual_availability
) = parse_container_node_variables!(pair, context, named, availability);
let mut comment = None;
let mut identifier = 0;
let mut generics_declaration = None;
let mut generics_constraint = None;
let mut function_declarations = vec![];
let mut inside_block = false;
for current in pair.into_inner() {
match current.as_rule() {
Rule::DECLARE_KEYWORD => parse_insert_keyword!(context, current, children, "declare"),
Rule::STRUCT_KEYWORD => parse_insert_keyword!(context, current, children, "struct"),
Rule::BLOCK_OPEN => {
parse_insert_punctuation!(context, current, children, "{");
inside_block = true;
},
Rule::BLOCK_CLOSE => parse_insert_punctuation!(context, current, children, "}"),
Rule::triple_comment_block => if !inside_block {
parse_set_optional!(parse_doc_comment(current, context), children, comment)
} else {
context.insert_unattached_doc_comment(parse_span(¤t));
parse_append!(parse_doc_comment(current, context), children);
},
Rule::double_comment_block => parse_append!(parse_code_comment(current, context), children),
Rule::identifier => parse_set_identifier_and_string_path!(context, current, children, identifier, string_path),
Rule::generics_declaration => parse_set_optional!(parse_generics_declaration(current, context), children, generics_declaration),
Rule::generics_constraint => parse_set_optional!(parse_generics_constraint(current, context), children, generics_constraint),
Rule::function_declaration => parse_insert!(parse_function_declaration(current, context, true), children, function_declarations),
_ => context.insert_unparsed(parse_span(¤t)),
}
}
parse_container_node_variables_cleanup!(context, named);
StructDeclaration {
span,
path,
string_path,
children,
define_availability,
actual_availability,
comment,
identifier,
generics_declaration,
generics_constraint,
function_declarations,
}
}