pub trait LineIndexExt {
// Required methods
fn offset_lsp(&self, line_col: Position) -> TextSize;
fn offset_lsp_range(&self, line_col: Range) -> TextRange;
fn line_col_lsp(&self, offset: TextSize) -> Position;
fn line_col_lsp_range(&self, offset: TextRange) -> Range;
}