1 2 3 4 5 6 7 8 9 10 11 12
//! Lexer checkpointing for incremental parsing. mod cache; mod core; mod diff; pub use cache::CheckpointCache; pub use core::{CheckpointContext, Checkpointable, LexerCheckpoint}; pub use diff::CheckpointDiff; #[cfg(test)] mod tests;