-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Expand if-expressions with leading and trailing comments #7082
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,6 +1,8 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use ruff_formatter::{write, FormatRuleWithOptions}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use ruff_python_ast::node::AnyNodeRef; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use ruff_python_ast::{Expr, ExprIfExp}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use ruff_python_ast::{Expr, ExprIfExp, ExpressionRef}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use ruff_python_trivia::{SimpleToken, SimpleTokenKind, SimpleTokenizer}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use ruff_text_size::Ranged; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use crate::comments::leading_comments; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use crate::expression::parentheses::{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -53,9 +55,25 @@ impl FormatNodeRule<ExprIfExp> for FormatExprIfExp { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
let comments = f.context().comments().clone(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let inner = format_with(|f: &mut PyFormatter| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// We place `if test` and `else orelse` on a single line, so the `test` and `orelse` leading | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// comments go on the line before the `if` or `else` instead of directly ahead `test` or | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// `orelse` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// If the expression has any leading or trailing comments, and is "alone" in brackets, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// always expand it, as in: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// # comment | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// if self.thing is None | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// else before - after | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// ] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (comments.has_leading(item) || comments.has_trailing(item)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
&& is_expression_bracketed(item.into(), f.context().source()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
expand_parent().fmt(f)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// We place `if test` and `else orelse` on a single line, so the `test` and `orelse` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// leading comments go on the line before the `if` or `else` instead of directly ahead | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// `test` or `orelse`. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
write!( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
f, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -109,3 +127,32 @@ impl Format<PyFormatContext<'_>> for FormatOrElse<'_> { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/// Returns `true` if the expression is surrounded by brackets (e.g., parenthesized, or the only | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/// expression in a list, tuple, or set). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fn is_expression_bracketed(expr: ExpressionRef, contents: &str) -> bool { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let mut tokenizer = SimpleTokenizer::starts_at(expr.end(), contents) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.skip_trivia() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.skip_while(|token| matches!(token.kind, SimpleTokenKind::Comma)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if matches!( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tokenizer.next(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Some(SimpleToken { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
kind: SimpleTokenKind::RParen | SimpleTokenKind::RBrace | SimpleTokenKind::RBracket, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let mut tokenizer = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SimpleTokenizer::up_to_without_back_comment(expr.start(), contents).skip_trivia(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
matches!( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tokenizer.next_back(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Some(SimpleToken { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
kind: SimpleTokenKind::LParen | SimpleTokenKind::LBrace | SimpleTokenKind::LBracket, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+131
to
+157
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.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
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
Oops, something went wrong.
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.
We already track whether we are inside of parentheses in
NodeLevel
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.
I don’t think this is quite the same — the condition here is “parenthesized or the only item in a set of brackets (e.g., the only item in a tuple literal or list literal or call).”