use super::*;
#[cfg(feature = "lsp-types")]
mod for_lsp;
#[cfg(feature = "ropey")]
mod for_ropey;
impl From<url::ParseError> for YggdrasilError {
fn from(_: url::ParseError) -> Self {
Self { kind: Box::new(IOError(std::io::Error::from_raw_os_error(10022))), file: None, range: None }
}
}