//! Tokenizer state management and issue reporting
//!
//! Provides context tracking and error reporting for the ASS tokenizer.
//! Maintains parsing state and accumulates issues during lexical analysis.
extern crate alloc;
pub use IssueCollector;
pub use TokenContext;
pub use TokenIssue;
pub use IssueLevel;