//! 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;