tinymist-query 0.14.14

Language queries for tinymist.
use tinymist_lint::KnownIssues;
use tinymist_project::LspCompiledArtifact;

use crate::{DiagWorker, DiagnosticsMap, SemanticRequest, prelude::*};

/// A request to check the document for errors and lints.
#[derive(Clone)]
pub struct CheckRequest {
    /// The compilation result of the document.
    pub snap: LspCompiledArtifact,
}

impl SemanticRequest for CheckRequest {
    type Response = DiagnosticsMap;

    fn request(self, ctx: &mut LocalContext) -> Option<Self::Response> {
        let worker = DiagWorker::new(ctx);
        let compiler_diags = self.snap.diagnostics();

        let known_issues = KnownIssues::from_compiler_diagnostics(compiler_diags.clone());
        Some(worker.check(&known_issues).convert_all(compiler_diags))
    }
}