mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-05 11:33:04 +00:00
Use with_emitter instead of with_tty_emitter
This commit is contained in:
parent
6ed3077651
commit
6e3394e635
@ -460,8 +460,9 @@ fn format_ast<F>(krate: &ast::Crate,
|
||||
}
|
||||
// Reset the error count.
|
||||
if parse_session.span_diagnostic.has_errors() {
|
||||
parse_session.span_diagnostic =
|
||||
Handler::with_tty_emitter(ColorConfig::Auto, true, false, Some(codemap.clone()));
|
||||
let silent_emitter = Box::new(EmitterWriter::new(Box::new(Vec::new()),
|
||||
Some(codemap.clone())));
|
||||
parse_session.span_diagnostic = Handler::with_emitter(true, false, silent_emitter);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user