Skip to main content

lsp_max/coverage/
mod.rs

1//! Protocol coverage matrices for LSP 3.18 and LSIF.
2//!
3//! This module hosts two sub-modules that independently measure how much of
4//! each respective protocol the lsp-max implementation covers.  Both are
5//! derived from authoritative specs rather than hand-maintained lists.
6pub mod lsp_coverage;
7pub use lsp_coverage::{lsp_coverage, CoverageReport, IMPLEMENTED_METHODS};