Skip to content

Commit 6f2722b

Browse files
Rollup merge of #121783 - nnethercote:emitter-cleanups, r=oli-obk
Emitter cleanups Some cleanups I made when reading emitter code. In particular, `HumanEmitter` and `JsonEmitter` have gone from three constructors to one. r? `@oli-obk`
2 parents 45aad17 + 9c85ae8 commit 6f2722b

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/parse/session.rs

+7-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::path::Path;
33
use std::sync::atomic::{AtomicBool, Ordering};
44

55
use rustc_data_structures::sync::{IntoDynSyncSend, Lrc};
6-
use rustc_errors::emitter::{DynEmitter, Emitter, HumanEmitter};
6+
use rustc_errors::emitter::{stderr_destination, DynEmitter, Emitter, HumanEmitter};
77
use rustc_errors::translation::Translate;
88
use rustc_errors::{ColorConfig, Diag, DiagCtxt, DiagInner, Level as DiagnosticLevel};
99
use rustc_session::parse::ParseSess as RawParseSess;
@@ -150,9 +150,12 @@ fn default_dcx(
150150
rustc_driver::DEFAULT_LOCALE_RESOURCES.to_vec(),
151151
false,
152152
);
153-
Box::new(HumanEmitter::stderr(emit_color, fallback_bundle).sm(Some(source_map.clone())))
153+
Box::new(
154+
HumanEmitter::new(stderr_destination(emit_color), fallback_bundle)
155+
.sm(Some(source_map.clone())),
156+
)
154157
};
155-
DiagCtxt::with_emitter(Box::new(SilentOnIgnoredFilesEmitter {
158+
DiagCtxt::new(Box::new(SilentOnIgnoredFilesEmitter {
156159
has_non_ignorable_parser_errors: false,
157160
source_map,
158161
emitter,
@@ -229,7 +232,7 @@ impl ParseSess {
229232
}
230233

231234
pub(crate) fn set_silent_emitter(&mut self) {
232-
self.parse_sess.dcx = DiagCtxt::with_emitter(silent_emitter());
235+
self.parse_sess.dcx = DiagCtxt::new(silent_emitter());
233236
}
234237

235238
pub(crate) fn span_to_filename(&self, span: Span) -> FileName {

0 commit comments

Comments
 (0)