ass-core 0.1.2

High-performance ASS subtitle format parser and analyzer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Additional coverage tests for ASS tokenizer edge cases.
//!
//! This module focuses on improving test coverage for previously untested
//! code paths in the tokenizer, particularly error conditions and edge cases
//! that are difficult to trigger through normal usage.

#[cfg(not(feature = "std"))]
extern crate alloc;

#[path = "additional_coverage_tests/scanner.rs"]
mod scanner;
#[path = "additional_coverage_tests/tokenizer_content.rs"]
mod tokenizer_content;
#[path = "additional_coverage_tests/tokenizer_context.rs"]
mod tokenizer_context;
#[path = "additional_coverage_tests/tokenizer_core.rs"]
mod tokenizer_core;