cairo_lang_diagnostics/lib.rs
1//! Diagnostics hold error information from around the compiler, associated with a location to the
2//! source files.
3
4pub use diagnostics::{
5 DiagnosticAdded, DiagnosticEntry, DiagnosticNote, Diagnostics, DiagnosticsBuilder,
6 FormattedDiagnosticEntry, Maybe, MaybeAsRef, PluginFileDiagnosticNotes, Severity, ToMaybe,
7 ToOption, UserLocationWithPluginNotes, format_diagnostics, skip_diagnostic,
8};
9pub use error_code::{ErrorCode, OptionErrorCodeExt};
10
11mod diagnostics;
12mod error_code;