Skip to main content

pcf_debug/model/
mod.rs

1//! The physical model of a PCF file: a defensive walk, a byte-layout map, and
2//! the diagnostics found along the way.
3
4pub mod diag;
5pub mod layout;
6pub mod walk;
7
8pub use diag::{DiagKind, Diagnostic, Severity};
9pub use layout::{build, LayoutMap, Region, RegionKind};
10pub use walk::{algo_name, walk, BlockView, EntryView, Walk};