diff --git a/rottlib/src/lexer/mod.rs b/rottlib/src/lexer/mod.rs index 3fb4001..6d0c6e7 100644 --- a/rottlib/src/lexer/mod.rs +++ b/rottlib/src/lexer/mod.rs @@ -43,7 +43,7 @@ use logos::Logos; #[cfg(any(debug_assertions, feature = "debug"))] pub use debug_tools::DebugTools; pub use iterator::Tokens; -pub use lexing::Token; +pub use lexing::{BraceKind, Token}; /// Empirically chosen starting size for token buffer (used during tokenization) /// that provides good performance.