pub trait ToLspRange {
// Required methods
fn start_to_lsp_position(&self, code: &str) -> Position;
fn end_to_lsp_position(&self, code: &str) -> Position;
// Provided method
fn to_lsp_range(&self, code: &str) -> Range { ... }
}
pub trait ToLspRange {
// Required methods
fn start_to_lsp_position(&self, code: &str) -> Position;
fn end_to_lsp_position(&self, code: &str) -> Position;
// Provided method
fn to_lsp_range(&self, code: &str) -> Range { ... }
}