cfg_symbol/lib.rs
1//! A type that can represent symbols in a context-free grammar. Symbols are distinguished by their
2//! IDs.
3
4#![deny(unsafe_code)]
5#![deny(missing_docs)]
6
7pub mod intern;
8mod source;
9mod symbol;
10
11pub use self::source::SymbolName;
12pub use self::source::SymbolSource;
13pub use self::symbol::Symbol;
14pub use self::symbol::SymbolPrimitive;