//! Tokenizer - for the Lexical analysis
/// Compile-time character classification tables.
/// Shared by the lexer's hot paths for branch-free byte classification.
/// Platform-specific whitespace-end finder used by `skip_whitespace`.
/// Kept `pub(crate)` — callers outside the tokenizer always go through
/// `Tokenizer::tokenize`, never through the platform internals directly.
pub
/// Token-stream splitter for the Approach-B (tokeniser-first) pipeline.
/// Separates `@CONFIG` tokens from the rest so `ConfigSectionHandler` can
/// process config with accurate source positions without stripping the source.
pub use ;
pub use ;
pub use ;