parse_arch_body

Function parse_arch_body 

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

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] ";"