Skip to content

Commit e3d6bf8

Browse files
committed
Auto merge of #114104 - oli-obk:syn2, r=compiler-errors
Lots of tiny incremental simplifications of `EmitterWriter` internals ignore the first commit, it's #114088 squashed and rebased, but it's needed to use to use `derive_setters`, as they need a newer `syn` version. Then this PR starts out with removing many arguments that are almost always defaulted to `None` or `false` and replace them with builder methods that can set these fields in the few cases that want to set them. After that it's one commit after the other that removes or merges things until everything becomes some very simple trait objects
2 parents 4cc22af + aac383e commit e3d6bf8

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

src/parse/session.rs

+2-13
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::sync::atomic::{AtomicBool, Ordering};
44
use rustc_data_structures::sync::{Lrc, Send};
55
use rustc_errors::emitter::{Emitter, EmitterWriter};
66
use rustc_errors::translation::Translate;
7-
use rustc_errors::{ColorConfig, Diagnostic, Handler, Level as DiagnosticLevel, TerminalUrl};
7+
use rustc_errors::{ColorConfig, Diagnostic, Handler, Level as DiagnosticLevel};
88
use rustc_session::parse::ParseSess as RawParseSess;
99
use rustc_span::{
1010
source_map::{FilePathMapping, SourceMap},
@@ -139,18 +139,7 @@ fn default_handler(
139139
rustc_driver::DEFAULT_LOCALE_RESOURCES.to_vec(),
140140
false,
141141
);
142-
Box::new(EmitterWriter::stderr(
143-
emit_color,
144-
Some(source_map.clone()),
145-
None,
146-
fallback_bundle,
147-
false,
148-
false,
149-
None,
150-
false,
151-
false,
152-
TerminalUrl::No,
153-
))
142+
Box::new(EmitterWriter::stderr(emit_color, fallback_bundle).sm(Some(source_map.clone())))
154143
};
155144
Handler::with_emitter(Box::new(SilentOnIgnoredFilesEmitter {
156145
has_non_ignorable_parser_errors: false,

0 commit comments

Comments
 (0)