lintspec-core 0.13.0

Core library for lintspec
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![cfg_attr(docsrs, feature(doc_cfg))]
//! Core library for lintspec.
//!
//! This crate provides the core parsing and validation logic for lintspec.
pub mod config;
pub mod definitions;
pub mod error;
pub mod files;
pub mod lint;
pub mod natspec;
pub mod parser;
pub(crate) mod prelude;
pub mod textindex;

#[cfg_attr(docsrs, doc(cfg(feature = "slang")))]
#[cfg(feature = "slang")]
pub mod utils;