Skip to content

Commit 5e141e0

Browse files
authored
Rollup merge of #122737 - ytmimi:conditionally_ignore_fatal_diagnostic, r=davidtwco
conditionally ignore fatal diagnostic in the SilentEmitter This change is primarily meant to allow rustfmt to ignore all diagnostics when using the `SilentEmitter`. Back in #121301 the `SilentEmitter` was shared between rustc and rustfmt. This changed rustfmt's behavior from ignoring all diagnostic to emitting fatal diagnostics, which lead to rust-lang/rustfmt#6109. These changes allow rustfmt to maintain its previous behaviour when using the `SilentEmitter`, while allowing rustc code to still emit fatal diagnostics.
2 parents 0aa66d1 + 911f6a4 commit 5e141e0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/parse/session.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ fn default_dcx(
121121
fallback_bundle,
122122
fatal_dcx: DiagCtxt::new(emitter),
123123
fatal_note: None,
124+
emit_fatal_diagnostic: false,
124125
})
125126
} else {
126127
emitter
@@ -209,7 +210,7 @@ impl ParseSess {
209210
rustc_driver::DEFAULT_LOCALE_RESOURCES.to_vec(),
210211
false,
211212
);
212-
self.raw_psess.dcx.make_silent(fallback_bundle, None);
213+
self.raw_psess.dcx.make_silent(fallback_bundle, None, false);
213214
}
214215

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

0 commit comments

Comments
 (0)