Skip to content

Commit d739d93

Browse files
authored
rename hide_parse_errors as show_parse_errors
Closes 3390 `hide_parse_errors` is now deprecated, and was renamed `show_parse_errors` to avoid confusion around the double negative default of `hide_parse_errors=false`.
1 parent 2019676 commit d739d93

File tree

6 files changed

+43
-10
lines changed

6 files changed

+43
-10
lines changed

Configurations.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1248,12 +1248,20 @@ Control the case of the letters in hexadecimal literal values
12481248

12491249
## `hide_parse_errors`
12501250

1251-
Do not show parse errors if the parser failed to parse files.
1251+
This option is deprecated and has been renamed to `show_parse_errors` to avoid confusion around the double negative default of `hide_parse_errors=false`.
12521252

12531253
- **Default value**: `false`
12541254
- **Possible values**: `true`, `false`
12551255
- **Stable**: No (tracking issue: [#3390](https://github.com/rust-lang/rustfmt/issues/3390))
12561256

1257+
## `show_parse_errors`
1258+
1259+
Show parse errors if the parser failed to parse files.
1260+
1261+
- **Default value**: `true`
1262+
- **Possible values**: `true`, `false`
1263+
- **Stable**: No (tracking issue: [#5977](https://github.com/rust-lang/rustfmt/issues/5977))
1264+
12571265
## `ignore`
12581266

12591267
Skip formatting files and directories that match the specified pattern.

src/config/config_type.rs

+18-2
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ macro_rules! create_config {
129129
| "chain_width" => self.0.set_heuristics(),
130130
"merge_imports" => self.0.set_merge_imports(),
131131
"fn_args_layout" => self.0.set_fn_args_layout(),
132+
"hide_parse_errors" => self.0.set_hide_parse_errors(),
132133
&_ => (),
133134
}
134135
}
@@ -184,6 +185,7 @@ macro_rules! create_config {
184185
self.set_ignore(dir);
185186
self.set_merge_imports();
186187
self.set_fn_args_layout();
188+
self.set_hide_parse_errors();
187189
self
188190
}
189191

@@ -278,19 +280,21 @@ macro_rules! create_config {
278280
| "chain_width" => self.set_heuristics(),
279281
"merge_imports" => self.set_merge_imports(),
280282
"fn_args_layout" => self.set_fn_args_layout(),
283+
"hide_parse_errors" => self.set_hide_parse_errors(),
281284
&_ => (),
282285
}
283286
}
284287

285288
#[allow(unreachable_pub)]
286289
pub fn is_hidden_option(name: &str) -> bool {
287-
const HIDE_OPTIONS: [&str; 6] = [
290+
const HIDE_OPTIONS: [&str; 7] = [
288291
"verbose",
289292
"verbose_diff",
290293
"file_lines",
291294
"width_heuristics",
292295
"merge_imports",
293-
"fn_args_layout"
296+
"fn_args_layout",
297+
"hide_parse_errors"
294298
];
295299
HIDE_OPTIONS.contains(&name)
296300
}
@@ -461,6 +465,18 @@ macro_rules! create_config {
461465
}
462466
}
463467

468+
fn set_hide_parse_errors(&mut self) {
469+
if self.was_set().hide_parse_errors() {
470+
eprintln!(
471+
"Warning: the `hide_parse_errors` option is deprecated. \
472+
Use `show_parse_errors` instead"
473+
);
474+
if !self.was_set().show_parse_errors() {
475+
self.show_parse_errors.2 = self.hide_parse_errors();
476+
}
477+
}
478+
}
479+
464480
#[allow(unreachable_pub)]
465481
/// Returns `true` if the config key was explicitly set and is the default value.
466482
pub fn is_default(&self, key: &str) -> bool {

src/config/mod.rs

+11-2
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ create_config! {
169169
"Enables unstable features. Only available on nightly channel";
170170
disable_all_formatting: bool, false, true, "Don't reformat anything";
171171
skip_children: bool, false, false, "Don't reformat out of line modules";
172-
hide_parse_errors: bool, false, false, "Hide errors from the parser";
172+
hide_parse_errors: bool, false, false, "(deprecated: use show_parse_errors instead)";
173+
show_parse_errors: bool, true, false, "Show errors from the parser (unstable)";
173174
error_on_line_overflow: bool, false, false, "Error if unable to get all lines within max_width";
174175
error_on_unformatted: bool, false, false,
175176
"Error if unable to get comments or string literals within max_width, \
@@ -204,6 +205,7 @@ impl PartialConfig {
204205
cloned.print_misformatted_file_names = None;
205206
cloned.merge_imports = None;
206207
cloned.fn_args_layout = None;
208+
cloned.hide_parse_errors = None;
207209

208210
::toml::to_string(&cloned).map_err(ToTomlError)
209211
}
@@ -456,6 +458,13 @@ mod test {
456458
fn_params_layout: Density, Density::Tall, true,
457459
"Control the layout of parameters in a function signatures.";
458460

461+
// hide_parse_errors renamed to show_parse_errors
462+
hide_parse_errors: bool, false, false,
463+
"(deprecated: use show_parse_errors instead)";
464+
show_parse_errors: bool, true, false,
465+
"Show errors from the parser (unstable)";
466+
467+
459468
// Width Heuristics
460469
use_small_heuristics: Heuristics, Heuristics::Default, true,
461470
"Whether to use different formatting for items and \
@@ -681,7 +690,7 @@ required_version = "{}"
681690
unstable_features = false
682691
disable_all_formatting = false
683692
skip_children = false
684-
hide_parse_errors = false
693+
show_parse_errors = true
685694
error_on_line_overflow = false
686695
error_on_unformatted = false
687696
ignore = []

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ fn format_snippet(snippet: &str, config: &Config, is_macro_def: bool) -> Option<
304304
let mut out: Vec<u8> = Vec::with_capacity(snippet.len() * 2);
305305
config.set().emit_mode(config::EmitMode::Stdout);
306306
config.set().verbose(Verbosity::Quiet);
307-
config.set().hide_parse_errors(true);
307+
config.set().show_parse_errors(false);
308308
if is_macro_def {
309309
config.set().error_on_unformatted(true);
310310
}

src/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1269,7 +1269,7 @@ impl MacroBranch {
12691269
let has_block_body = old_body.starts_with('{');
12701270

12711271
let mut config = context.config.clone();
1272-
config.set().hide_parse_errors(true);
1272+
config.set().show_parse_errors(false);
12731273

12741274
result += " {";
12751275

src/parse/session.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ fn default_handler(
122122
source_map: Lrc<SourceMap>,
123123
ignore_path_set: Lrc<IgnorePathSet>,
124124
can_reset: Lrc<AtomicBool>,
125-
hide_parse_errors: bool,
125+
show_parse_errors: bool,
126126
color: Color,
127127
) -> Handler {
128128
let supports_color = term::stderr().map_or(false, |term| term.supports_color());
@@ -132,7 +132,7 @@ fn default_handler(
132132
ColorConfig::Never
133133
};
134134

135-
let emitter = if hide_parse_errors {
135+
let emitter = if !show_parse_errors {
136136
silent_emitter()
137137
} else {
138138
let fallback_bundle = rustc_errors::fallback_fluent_bundle(
@@ -163,7 +163,7 @@ impl ParseSess {
163163
Lrc::clone(&source_map),
164164
Lrc::clone(&ignore_path_set),
165165
Lrc::clone(&can_reset_errors),
166-
config.hide_parse_errors(),
166+
config.show_parse_errors(),
167167
config.color(),
168168
);
169169
let parse_sess = RawParseSess::with_span_handler(handler, source_map);

0 commit comments

Comments
 (0)