Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c1f3622

Browse files
authoredSep 17, 2019
Rollup merge of rust-lang#64429 - afnanenayet:afnan/fix-failure-note-json-level, r=Mark-Simulacrum
Fix failure note `to_str` implementation Serialize the level to something a little more useful for a failure note struct. This fixes rust-lang#60425.
2 parents 0c56e1b + 02c1b89 commit c1f3622

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed
 

‎src/librustc_errors/emitter.rs

+9-6
Original file line numberDiff line numberDiff line change
@@ -1144,15 +1144,18 @@ impl EmitterWriter {
11441144
buffer.prepend(0, " ", Style::NoStyle);
11451145
}
11461146
draw_note_separator(&mut buffer, 0, max_line_num_len + 1);
1147-
let level_str = level.to_string();
1148-
if !level_str.is_empty() {
1149-
buffer.append(0, &level_str, Style::MainHeaderMsg);
1150-
buffer.append(0, ": ", Style::NoStyle);
1147+
if *level != Level::FailureNote {
1148+
let level_str = level.to_string();
1149+
if !level_str.is_empty() {
1150+
buffer.append(0, &level_str, Style::MainHeaderMsg);
1151+
buffer.append(0, ": ", Style::NoStyle);
1152+
}
11511153
}
11521154
self.msg_to_buffer(&mut buffer, msg, max_line_num_len, "note", None);
11531155
} else {
11541156
let level_str = level.to_string();
1155-
if !level_str.is_empty() {
1157+
// The failure note level itself does not provide any useful diagnostic information
1158+
if *level != Level::FailureNote && !level_str.is_empty() {
11561159
buffer.append(0, &level_str, Style::Level(level.clone()));
11571160
}
11581161
// only render error codes, not lint codes
@@ -1161,7 +1164,7 @@ impl EmitterWriter {
11611164
buffer.append(0, &code, Style::Level(level.clone()));
11621165
buffer.append(0, "]", Style::Level(level.clone()));
11631166
}
1164-
if !level_str.is_empty() {
1167+
if *level != Level::FailureNote && !level_str.is_empty() {
11651168
buffer.append(0, ": ", header_style);
11661169
}
11671170
for &(ref text, _) in msg.iter() {

‎src/librustc_errors/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ impl Level {
833833
Warning => "warning",
834834
Note => "note",
835835
Help => "help",
836-
FailureNote => "",
836+
FailureNote => "failure-note",
837837
Cancelled => panic!("Shouldn't call on cancelled error"),
838838
}
839839
}

‎src/test/ui/json-short.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ started: https://doc.rust-lang.org/book/
1515
"}
1616
{"message":"aborting due to previous error","code":null,"level":"error","spans":[],"children":[],"rendered":"error: aborting due to previous error
1717
"}
18-
{"message":"For more information about this error, try `rustc --explain E0601`.","code":null,"level":"","spans":[],"children":[],"rendered":"For more information about this error, try `rustc --explain E0601`.
18+
{"message":"For more information about this error, try `rustc --explain E0601`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"For more information about this error, try `rustc --explain E0601`.
1919
"}

‎src/test/ui/lint/use_suggestion_json.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ mod foo {
412412
{
413413
"message": "For more information about this error, try `rustc --explain E0412`.",
414414
"code": null,
415-
"level": "",
415+
"level": "failure-note",
416416
"spans": [],
417417
"children": [],
418418
"rendered": "\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0412`.\u001b[0m

0 commit comments

Comments
 (0)
Please sign in to comment.