Module moore_vhdl_syntax::parser[][src]

Expand description

A VHDL parser.

Re-exports

pub use self::token_stream::TokenStream;

Modules

This module implements a basic parser that accepts tokens from the VHDL lexer and emits errors back to it.

This module implements a first stage recursive descent parser for VHDL. It can process a stream of input tokens into the coarse, generalized abstract syntax tree defined in ast. The grammar productions/rules outlined in the VHDL standard are collapsed into more general rules as outlined in the following table.