Skip to content

Commit aba5f54

Browse files
committed
errors: only eagerly translate subdiagnostics
Subdiagnostics don't need to be lazily translated, they can always be eagerly translated. Eager translation is slightly more complex as we need to have a `DiagCtxt` available to perform the translation, which involves slightly more threading of that context. This slight increase in complexity should enable later simplifications - like passing `DiagCtxt` into `AddToDiagnostic` and moving Fluent messages into the diagnostic structs rather than having them in separate files (working on that was what led to this change). Signed-off-by: David Wood <[email protected]>
1 parent 16250ea commit aba5f54

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/parse/session.rs

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
use std::borrow::Cow;
12
use std::path::Path;
23
use std::sync::atomic::{AtomicBool, Ordering};
34

@@ -40,6 +41,16 @@ impl Translate for SilentEmitter {
4041
fn fallback_fluent_bundle(&self) -> &rustc_errors::FluentBundle {
4142
panic!("silent emitter attempted to translate a diagnostic");
4243
}
44+
45+
// Override `translate_message` for the silent emitter because eager translation of
46+
// subdiagnostics result in a call to this.
47+
fn translate_message<'a>(
48+
&'a self,
49+
message: &'a rustc_errors::DiagnosticMessage,
50+
_: &'a rustc_errors::translation::FluentArgs<'_>,
51+
) -> Result<Cow<'_, str>, rustc_errors::error::TranslateError<'_>> {
52+
rustc_errors::emitter::silent_translate(message)
53+
}
4354
}
4455

4556
impl Emitter for SilentEmitter {

0 commit comments

Comments
 (0)