diff options
| author | Eric Huss <eric@huss.org> | 2019-09-24 16:53:33 -0700 |
|---|---|---|
| committer | Eric Huss <eric@huss.org> | 2019-09-24 16:53:33 -0700 |
| commit | 6d07874e883ae4334b42ef3ab04cc3f52ee711ee (patch) | |
| tree | dd360aaa4aa02671cb8462bec638f1854a4c556f | |
| parent | 6ef275e6c3cb1384ec78128eceeb4963ff788dca (diff) | |
| download | rust-6d07874e883ae4334b42ef3ab04cc3f52ee711ee.tar.gz rust-6d07874e883ae4334b42ef3ab04cc3f52ee711ee.zip | |
Don't emit explain with json short messages.
| -rw-r--r-- | src/libsyntax/json.rs | 7 | ||||
| -rw-r--r-- | src/test/ui/json-short.stderr | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/libsyntax/json.rs b/src/libsyntax/json.rs index 5cdea3aabbe..2423e1070fc 100644 --- a/src/libsyntax/json.rs +++ b/src/libsyntax/json.rs @@ -112,6 +112,13 @@ impl Emitter for JsonEmitter { panic!("failed to print notification: {:?}", e); } } + + fn should_show_explain(&self) -> bool { + match self.json_rendered { + HumanReadableErrorType::Short(_) => false, + _ => true, + } + } } // The following data types are provided just for serialisation. diff --git a/src/test/ui/json-short.stderr b/src/test/ui/json-short.stderr index 0a1fb567714..d9f68023ce7 100644 --- a/src/test/ui/json-short.stderr +++ b/src/test/ui/json-short.stderr @@ -15,5 +15,3 @@ started: https://doc.rust-lang.org/book/ "} {"message":"aborting due to previous error","code":null,"level":"error","spans":[],"children":[],"rendered":"error: aborting due to previous error "} -{"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`. -"} |
