1 2 3 4 5 6 7 8
//! Text utilities: the language server's live document buffer, and byte-offset //! ↔ line/column conversion. pub mod buffer; pub mod line_index; pub use buffer::TextBuffer; pub use line_index::{LineCol, LineIndex, LineTable, PositionEncoding};