vhdl_lang/syntax/tokens.rs
1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this file,
3// You can obtain one at http://mozilla.org/MPL/2.0/.
4//
5// Copyright (c) 2019, Olof Kraigher olof.kraigher@gmail.com
6
7#[macro_use]
8mod tokenizer;
9/// Contains constant keywords for different versions of VHDL.
10mod keywords;
11mod tokenstream;
12
13pub use tokenizer::*;
14pub use tokenstream::*;