ass-editor 0.1.2

High-performance, ergonomic editor layer for ASS subtitles
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Incremental parsing integration with ass-core
//!
//! Provides efficient incremental parsing by leveraging Script::parse_partial()
//! to achieve <1ms edit times and <5ms reparse times. Tracks deltas for proper
//! undo/redo integration and maintains consistency with the rope structure.

mod apply;
mod reparse;
mod state;
mod types;

#[cfg(test)]
mod tests;

pub use types::{DocumentChange, IncrementalParser};