oxc-miette 4.0.0

Fancy diagnostic reporting library and protocol for us mere mortals who aren't compiler hackers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Diagnostic protocols and renderers used by Oxc.
//!
//! This crate defines the [`Diagnostic`] and [`SourceCode`] protocols together
//! with graphical and JSON renderers. It intentionally does not provide an
//! application error container: callers own diagnostics directly or through
//! boxed trait objects and choose a renderer explicitly.

pub use handlers::*;
pub use named_source::*;
pub use protocol::*;

mod handlers;
mod named_source;
mod protocol;
mod source_impls;