ass_core/tokenizer/scanner/mod.rs
1//! Token scanning methods for ASS tokenizer
2//!
3//! Provides specialized scanning functions for different ASS script elements
4//! including section headers, style overrides, comments, and text content.
5
6mod navigator;
7mod text_scanner;
8mod token_scanner;
9
10#[cfg(test)]
11mod tests1;
12#[cfg(test)]
13mod tests2;
14#[cfg(test)]
15mod tests3;
16#[cfg(test)]
17mod tests4;
18#[cfg(test)]
19mod tests5;
20#[cfg(test)]
21mod tests6;
22#[cfg(test)]
23mod tests7;
24#[cfg(test)]
25mod tests8;
26#[cfg(test)]
27mod tests9;
28
29pub use navigator::CharNavigator;
30pub use token_scanner::TokenScanner;