1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![doc(html_root_url = "https://calypso-lang.github.io/rustdoc/calypso_diagnostic/index.html")]
#![warn(clippy::pedantic)]
pub use calypso_error;
pub use codespan_reporting as reporting;
pub mod diagnostic;
pub mod error;
pub mod report;
pub mod types;
pub mod prelude {
pub use super::calypso_error::{CalError, CalResult};
pub use super::diagnostic::{self, EnsembleBuilder, LabelStyle};
pub use super::err;
pub use super::error::DiagnosticError;
pub use super::reporting::files::Files;
}