[][src]Function moore_vhdl_syntax::parser::rules::parse_arch_body

pub fn parse_arch_body<P: Parser>(p: &mut P) -> ReportedResult<ArchBody>

Parse an architecture body. See IEEE 1076-2008 section 3.3.

arch_body :=
  "architecture" ident "of" name "is"
    {decl_item}
  "begin"
    {stmt}
  "end" ["architecture"] [ident] ";"