We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
DiagCtxt::with_emitter
DiagCtxt::new
1 parent 4026fd7 commit 0811e8fCopy full SHA for 0811e8f
src/parse/session.rs
@@ -154,7 +154,7 @@ fn default_dcx(
154
);
155
Box::new(HumanEmitter::stderr(emit_color, fallback_bundle).sm(Some(source_map.clone())))
156
};
157
- DiagCtxt::with_emitter(Box::new(SilentOnIgnoredFilesEmitter {
+ DiagCtxt::new(Box::new(SilentOnIgnoredFilesEmitter {
158
has_non_ignorable_parser_errors: false,
159
source_map,
160
emitter,
@@ -235,7 +235,7 @@ impl ParseSess {
235
}
236
237
pub(crate) fn set_silent_emitter(&mut self) {
238
- self.parse_sess.dcx = DiagCtxt::with_emitter(silent_emitter());
+ self.parse_sess.dcx = DiagCtxt::new(silent_emitter());
239
240
241
pub(crate) fn span_to_filename(&self, span: Span) -> FileName {
0 commit comments