cairo-lang-diagnostics 2.18.0

Diagnostic utilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Diagnostics hold error information from around the compiler, associated with a location in the
//! source files.

pub use diagnostics::{
    DiagnosticAdded, DiagnosticEntry, DiagnosticNote, Diagnostics, DiagnosticsBuilder,
    FormattedDiagnosticEntry, Maybe, MaybeAsRef, PluginFileDiagnosticNotes, Severity, ToMaybe,
    ToOption, UserLocationWithPluginNotes, format_diagnostics, skip_diagnostic,
};
pub use error_code::{ErrorCode, OptionErrorCodeExt};

mod diagnostics;
mod error_code;