pedant-core 0.20.1

Analysis engine for pedant: IR extraction, style checks, and capability detection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Shared helpers for semantic analysis submodules.
//!
//! Contains the file parsing preamble (`with_parsed_file`) and utility
//! functions used across multiple detection domains.

mod analysis;
mod context;
mod file;
mod prelude;
mod sinks;

pub(super) use analysis::lock_receiver_name;
pub(super) use context::*;
pub(super) use file::*;