Move JSON emitter to rustc_errors

This commit is contained in:
Mark Rousskov 2019-11-14 17:24:44 -05:00
parent 3f93ffc333
commit c31a8754e3
7 changed files with 22 additions and 17 deletions

View file

@ -37,6 +37,7 @@ mod snippet;
pub mod registry;
mod styled_buffer;
mod lock;
pub mod json;
pub type PResult<'a, T> = Result<T, DiagnosticBuilder<'a>>;