crisp-errors 1.6.0

Fallibility analysis and CrispError enum synthesis (spec §9)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Error pass — ambient propagation, reachable CrispError sets (spec §9).

mod analyze;
mod display;
mod error;
mod result;
mod set;

pub use analyze::ErrorPass;
pub use display::{format_crisp_error_enum, format_error_sig, format_errors_crate};
pub use error::ErrorPassError;
pub use result::{CrispErrorEnum, CrispErrorVariant, ErrorResult, ErrorSet, ErrorSig};