webspec-index 0.7.0

Query WHATWG/W3C/TC39 web specifications from the command line
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Source code analysis for spec references and step comments.
//!
//! This module provides language-agnostic analysis of source files to find
//! spec URL references, validate step comments against spec algorithms,
//! and compute coverage metrics.
//!
//! Used by both the LSP server and the `analyze` CLI subcommand.

pub mod coverage;
pub mod file;
pub mod matcher;
pub mod scanner;
pub mod searchfox;
pub mod steps;