emmylua_code_analysis 0.22.0

A library for analyzing lua code.
Documentation
use std::path::PathBuf;

use super::file_path_to_uri;
use lsp_types::Uri;

#[allow(unused)]
#[derive(Debug)]
pub struct VirtualUrlGenerator {
    pub base: PathBuf,
}

#[allow(unused)]
impl Default for VirtualUrlGenerator {
    fn default() -> Self {
        Self::new()
    }
}

impl VirtualUrlGenerator {
    pub fn new() -> Self {
        let env_path = std::env::current_dir().expect("Current dir should be set");
        VirtualUrlGenerator { base: env_path }
    }

    pub fn new_uri(&self, path: &str) -> Uri {
        let path = self.base.join(path);
        file_path_to_uri(&path).expect("File should give a valid URI")
    }

    pub fn new_path(&self, path: &str) -> PathBuf {
        self.base.join(path)
    }
}