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

mod diagnostics;
mod location_marks;

pub use self::diagnostics::{
    format_diagnostics, skip_diagnostic, DiagnosticAdded, DiagnosticEntry, DiagnosticLocation,
    DiagnosticNote, Diagnostics, DiagnosticsBuilder, FormattedDiagnosticEntry, Maybe, Severity,
    ToMaybe, ToOption,
};
pub use self::location_marks::get_location_marks;