1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at http://mozilla.org/MPL/2.0/.
//
// Copyright (c) 2018, Olof Kraigher olof.kraigher@gmail.com

pub mod ast;
#[macro_use]
mod tokenizer;
mod alias_declaration;
mod attributes;
mod common;
mod component_declaration;
mod concurrent_statement;
mod config;
mod configuration;
mod context;
mod declarative_part;
mod design_unit;
mod expression;
mod interface_declaration;
mod latin_1;
mod library;
mod message;
mod names;
mod object_declaration;
mod parser;
mod project;
mod range;
mod semantic;
mod sequential_statement;
mod source;
mod subprogram;
mod subtype_indication;
mod symbol_table;
mod tokenstream;
mod type_declaration;
mod waveform;

#[cfg(test)]
mod test_util;

pub use config::Config;
pub use message::{Message, Severity};
pub use parser::{ParserError, ParserResult, VHDLParser};
pub use project::Project;
pub use source::{Source, SrcPos};