Skip to content

Commit 8843223

Browse files
committed
Change printing of "--error-format is unstable" errors.
Currently for these two errors we go to the effort of switching to a standard JSON emitter, for no obvious reason, and unlike any other errors. This behaviour was added for `pretty-json` in #45737, and then `human-annotate-rs` copied it some time later when it was added. This commit changes things to just using the requested emitter, which is simpler and consistent with other errors. Old output: ``` $ rustc --error-format pretty-json {"$message_type":"diagnostic","message":"`--error-format=pretty-json` is unstable","code":null,"level":"error","spans":[],"children":[],"rendered":"error: `--error-format=pretty-json` is unstable\n\n"} $ rustc --error-format human-annotate-rs {"$message_type":"diagnostic","message":"`--error-format=human-annotate-rs` is unstable","code":null,"level":"error","spans":[],"children":[],"rendered":"error: `--error-format=human-annotate-rs` is unstable\n\n"} ``` New output: ``` $ rustc --error-format pretty-json { "$message_type": "diagnostic", "message": "`--error-format=pretty-json` is unstable", "code": null, "level": "error", "spans": [], "children": [], "rendered": "error: `--error-format=pretty-json` is unstable\n\n" } $ rustc --error-format human-annotate-rs error: `--error-format=human-annotate-rs` is unstable ```
1 parent f5a09a9 commit 8843223

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

compiler/rustc_session/src/config.rs

+2-11
Original file line numberDiff line numberDiff line change
@@ -2051,23 +2051,14 @@ fn check_error_format_stability(
20512051
early_dcx: &mut EarlyDiagCtxt,
20522052
unstable_opts: &UnstableOptions,
20532053
error_format: ErrorOutputType,
2054-
json_rendered: HumanReadableErrorType,
20552054
) {
20562055
if !unstable_opts.unstable_options {
2057-
if let ErrorOutputType::Json { pretty: true, json_rendered } = error_format {
2058-
early_dcx.abort_if_error_and_set_error_format(ErrorOutputType::Json {
2059-
pretty: false,
2060-
json_rendered,
2061-
});
2056+
if let ErrorOutputType::Json { pretty: true, .. } = error_format {
20622057
early_dcx.early_fatal("`--error-format=pretty-json` is unstable");
20632058
}
20642059
if let ErrorOutputType::HumanReadable(HumanReadableErrorType::AnnotateSnippet(_)) =
20652060
error_format
20662061
{
2067-
early_dcx.abort_if_error_and_set_error_format(ErrorOutputType::Json {
2068-
pretty: false,
2069-
json_rendered,
2070-
});
20712062
early_dcx.early_fatal("`--error-format=human-annotate-rs` is unstable");
20722063
}
20732064
}
@@ -2665,7 +2656,7 @@ pub fn build_session_options(early_dcx: &mut EarlyDiagCtxt, matches: &getopts::M
26652656
let mut unstable_opts = UnstableOptions::build(early_dcx, matches);
26662657
let (lint_opts, describe_lints, lint_cap) = get_cmd_lint_options(early_dcx, matches);
26672658

2668-
check_error_format_stability(early_dcx, &unstable_opts, error_format, json_rendered);
2659+
check_error_format_stability(early_dcx, &unstable_opts, error_format);
26692660

26702661
if !unstable_opts.unstable_options && json_unused_externs.is_enabled() {
26712662
early_dcx.early_fatal(

0 commit comments

Comments
 (0)