Add BraceKind import to lexer module

This commit is contained in:
dkanus 2025-09-16 08:21:21 +07:00
parent d2e1913c63
commit c79e552f09

View File

@ -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.