pedant-core 0.20.2

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
//! Rust module closure for one resolution unit.
//!
//! The walk follows inline modules, ordinary external modules, and explicit
//! path alternatives while keeping traversal state separate from filesystem
//! candidate resolution.

mod entry;
mod path;
mod state;
mod walk;

pub(super) use entry::ClosureEntry;
pub(super) use state::UnitClosure;
pub(super) use walk::walk_unit;