Skip to content

Commit 0811e8f

Browse files
committed
Rename DiagCtxt::with_emitter as DiagCtxt::new.
Because it's now the only constructor.
1 parent 4026fd7 commit 0811e8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parse/session.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ fn default_dcx(
154154
);
155155
Box::new(HumanEmitter::stderr(emit_color, fallback_bundle).sm(Some(source_map.clone())))
156156
};
157-
DiagCtxt::with_emitter(Box::new(SilentOnIgnoredFilesEmitter {
157+
DiagCtxt::new(Box::new(SilentOnIgnoredFilesEmitter {
158158
has_non_ignorable_parser_errors: false,
159159
source_map,
160160
emitter,
@@ -235,7 +235,7 @@ impl ParseSess {
235235
}
236236

237237
pub(crate) fn set_silent_emitter(&mut self) {
238-
self.parse_sess.dcx = DiagCtxt::with_emitter(silent_emitter());
238+
self.parse_sess.dcx = DiagCtxt::new(silent_emitter());
239239
}
240240

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

0 commit comments

Comments
 (0)