-
Notifications
You must be signed in to change notification settings - Fork 916
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
enhance const block formatting #4493
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
tests/source/configs/brace_style/const_block_always_next_line.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// rustfmt-brace_style: AlwaysNextLine | ||
// AlwaysNextLine brace style for const blocks | ||
|
||
fn foo() -> i32 { | ||
const { | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn bar() -> i32 { | ||
const { 4 } | ||
} | ||
|
||
fn foo() -> i32 { | ||
const | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn foo() -> i32 { | ||
const // baz | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn foo() -> i32 { | ||
const /*qux */ { | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn foo() -> i32 { | ||
const | ||
// baz | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
tests/source/configs/brace_style/const_block_same_line_where.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// rustfmt-brace_style: SameLineWhere | ||
// SameLineWhere brace style for const blocks | ||
|
||
fn foo() -> i32 { | ||
const { | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn bar() -> i32 { | ||
const { 4 } | ||
} | ||
|
||
fn foo() -> i32 { | ||
const | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn foo() -> i32 { | ||
const // baz | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn foo() -> i32 { | ||
const /*qux */ { | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn foo() -> i32 { | ||
const | ||
// baz | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} |
53 changes: 53 additions & 0 deletions
53
tests/target/configs/brace_style/const_block_always_next_line.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// rustfmt-brace_style: AlwaysNextLine | ||
// AlwaysNextLine brace style for const blocks | ||
|
||
fn foo() -> i32 | ||
{ | ||
const | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn bar() -> i32 | ||
{ | ||
const { 4 } | ||
} | ||
|
||
fn foo() -> i32 | ||
{ | ||
const | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn foo() -> i32 | ||
{ | ||
const // baz | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn foo() -> i32 | ||
{ | ||
const /*qux */ | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn foo() -> i32 | ||
{ | ||
const | ||
// baz | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
tests/target/configs/brace_style/const_block_same_line_where.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// rustfmt-brace_style: SameLineWhere | ||
// SameLineWhere brace style for const blocks | ||
|
||
fn foo() -> i32 { | ||
const { | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn bar() -> i32 { | ||
const { 4 } | ||
} | ||
|
||
fn foo() -> i32 { | ||
const { | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn foo() -> i32 { | ||
const // baz | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn foo() -> i32 { | ||
const /*qux */ | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} | ||
|
||
fn foo() -> i32 { | ||
const | ||
// baz | ||
{ | ||
let x = 5 + 10; | ||
x / 3 | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
somehow github doesn't show the update.
i have updated this according to your suggestion. one thing different is
allow_extend
value i put is withoutcontains_comments
as decision parameter because its value is constant. I didcargo make test
with code as presented above and it passes the test.My question is do we still need to put
contains_comments
here or the test is not extensive enough?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.
What makes you think that this value is constant? Whether this local has a value of
true
orfalse
is explicitly variable depending on the input code being formattedThere 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.
the fact that the code above (
contains_comments
is omitted) passed the test and successfuly built, i guesscontains_comments
is always false.this certainly is my doubt whether i didn't put enough test case or
contains_comments
is constant.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.
but this is just a question, at the moment i will follow your suggestion and later will update it with
contains_comments
on it.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.
Ah okay, I think I see what you are asking now.
contains_comment
is not a constant, but a utility function that provides the ability to cheaply peek into a certain span to see whether or not there are any comments within there. In this case, that span represents the section between theconst
keyword and the opening{
. So with a const block expression like this:const { x }
,contains_comment
will returnfalse
because there are no comments there of course, but with an expression likeconst /*abc*/ { x }
,contains_comment
will returntrue
because there is of course a comment within/*abc*/
.The reason why I included this was to try to be consistent with how rustfmt currently handles comments between the
unsafe
keyword and the associated block whenbrace_style
is set toAlwaysNextLine
:However, and perhaps this is what you were alluding to 😄, it's not necessary to do so here because
combine_strs_with_missing_comments
already takes this into account!Sorry about that, I was going back and forth in my head about which util functions to use and got a bit mixed up. If you wouldn't mind reverting that back (removing the
! contains_comments
) then we should be good to merge this. Thanks for your patience and persistence!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.
sorry, i cant formulate a good sentences.