-
Notifications
You must be signed in to change notification settings - Fork 928
normalize match reference style, #929 #2697
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,6 +141,25 @@ configuration_option_enum! { IndentStyle: | |
Block, | ||
} | ||
|
||
configuration_option_enum! { MatchReferenceStyle: | ||
Manual, | ||
// match x { | ||
// &A => ..., | ||
// ... | ||
// } | ||
Reference, | ||
// match *x { | ||
// A => ..., | ||
// ... | ||
// } | ||
Dereference, | ||
// match x { | ||
// A => ..., | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this should There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rust 1.26 has stabilized match_default_bindings
fn hello(arg: &mut Option<String>) {
match arg {
Some(name) => name.push_str(", world"),
None => (),
}
}
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm, then should it be What is the motivation for having four modes? I would have thought that auto and manual would be the most widely used. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Before Rust 1.26, you can choose
Since Rust 1.26, the compiler could do smarter, it can automatic handle the fn hello(name: &Option<&str>) {
match name {
Some(name) => println!("Hello {}!", name),
None => println!("I don't know who you are."),
}
}
fn main() {
let name = Some("world");
hello(&name);
} So, if we use Rust 1.26 or later, just set the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Right, but since 1.26 is stable now, I think we could just offer auto and manual, and we don't need to offer ref and deref styles. Do you think there is an advantage to continue to offer ref and deref? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The problem is some projects may still using the old Rust version, they may need to align the code style with |
||
// ... | ||
// } | ||
Auto | ||
} | ||
|
||
configuration_option_enum! { Density: | ||
// Fit as much on one line as possible. | ||
Compressed, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// rustfmt-match_reference_style: auto | ||
// Normalize match reference style | ||
|
||
fn hello(name: &Option<&str>) { | ||
match name { | ||
&Some(name) => println!("Hello {}!", name), | ||
&None => println!("I don't know who you are."), | ||
} | ||
} | ||
|
||
fn kiss(name: &Option<&str>) { | ||
match *name { | ||
Some(name) => println!("Kiss {}!", name), | ||
None => println!("I don't know who you are."), | ||
} | ||
} | ||
|
||
fn main() { | ||
let name = Some("rustfmt"); | ||
|
||
hello(&name); | ||
kiss(&name); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// rustfmt-match_reference_style: dereference | ||
// Normalize match reference style | ||
|
||
fn hello(name: &Option<&str>) { | ||
match name { | ||
&Some(name) => println!("Hello {}!", name), | ||
&None => println!("I don't know who you are."), | ||
} | ||
} | ||
|
||
fn kiss(name: &Option<&str>) { | ||
match *name { | ||
Some(name) => println!("Kiss {}!", name), | ||
None => println!("I don't know who you are."), | ||
} | ||
} | ||
|
||
fn main() { | ||
let name = Some("rustfmt"); | ||
|
||
hello(&name); | ||
kiss(&name); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// rustfmt-match_reference_style: reference | ||
// Normalize match reference style | ||
|
||
fn hello(name: &Option<&str>) { | ||
match name { | ||
&Some(name) => println!("Hello {}!", name), | ||
&None => println!("I don't know who you are."), | ||
} | ||
} | ||
|
||
fn kiss(name: &Option<&str>) { | ||
match *name { | ||
Some(name) => println!("Kiss {}!", name), | ||
None => println!("I don't know who you are."), | ||
} | ||
} | ||
|
||
fn main() { | ||
let name = Some("rustfmt"); | ||
|
||
hello(&name); | ||
kiss(&name); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// rustfmt-match_reference_style: auto | ||
// Normalize match reference style | ||
|
||
fn hello(name: &Option<&str>) { | ||
match name { | ||
Some(name) => println!("Hello {}!", name), | ||
None => println!("I don't know who you are."), | ||
} | ||
} | ||
|
||
fn kiss(name: &Option<&str>) { | ||
match name { | ||
Some(name) => println!("Kiss {}!", name), | ||
None => println!("I don't know who you are."), | ||
} | ||
} | ||
|
||
fn main() { | ||
let name = Some("rustfmt"); | ||
|
||
hello(&name); | ||
kiss(&name); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// rustfmt-match_reference_style: dereference | ||
// Normalize match reference style | ||
|
||
fn hello(name: &Option<&str>) { | ||
match *name { | ||
Some(name) => println!("Hello {}!", name), | ||
None => println!("I don't know who you are."), | ||
} | ||
} | ||
|
||
fn kiss(name: &Option<&str>) { | ||
match *name { | ||
Some(name) => println!("Kiss {}!", name), | ||
None => println!("I don't know who you are."), | ||
} | ||
} | ||
|
||
fn main() { | ||
let name = Some("rustfmt"); | ||
|
||
hello(&name); | ||
kiss(&name); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// rustfmt-match_reference_style: reference | ||
// Normalize match reference style | ||
|
||
fn hello(name: &Option<&str>) { | ||
match name { | ||
&Some(name) => println!("Hello {}!", name), | ||
&None => println!("I don't know who you are."), | ||
} | ||
} | ||
|
||
fn kiss(name: &Option<&str>) { | ||
match name { | ||
&Some(name) => println!("Kiss {}!", name), | ||
&None => println!("I don't know who you are."), | ||
} | ||
} | ||
|
||
fn main() { | ||
let name = Some("rustfmt"); | ||
|
||
hello(&name); | ||
kiss(&name); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"need" should be "requires"