Skip to content
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

implicit_return: better handling of asynchronous code #14446

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

samueltardieu
Copy link
Contributor

@samueltardieu samueltardieu commented Mar 20, 2025

Blocks created by desugaring will not contain an explicit return. Do not suggest to add it when the user has no control over the desugared code.

Also, ensure that in a xxx.await expression, the suggested return is emitted before the whole expression, not before the await keyword.

Fix #14411

changelog: [implicit_return]: fix proposed return position in the presence of asynchronous code

@rustbot
Copy link
Collaborator

rustbot commented Mar 20, 2025

r? @llogiq

rustbot has assigned @llogiq.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties label Mar 20, 2025
@samueltardieu samueltardieu marked this pull request as draft March 21, 2025 07:02
@samueltardieu samueltardieu marked this pull request as ready for review March 21, 2025 09:58
@samueltardieu samueltardieu marked this pull request as draft March 21, 2025 10:08
@samueltardieu samueltardieu force-pushed the push-lyuvommpqwoq branch 2 times, most recently from 1fce8ce to 2b85fc1 Compare March 21, 2025 10:52
@samueltardieu samueltardieu changed the title implicit_return: do not suggest adding return into desugared code implicit_return: better handling of asynchronous code Mar 21, 2025
@samueltardieu samueltardieu marked this pull request as ready for review March 21, 2025 11:06
@samueltardieu
Copy link
Contributor Author

The 23 new hits during Lintcheck all seem legitimate. The 5 changes lints are due to the fact that an enclosing HIR node now gets the lint. Rerunning Clippy after fixing this would reach the inner expressions.

Also, be stricter in matching the right expansion of async closures.
Blocks created by desugaring will not contain an explicit `return`. Do not
suggest to add it when the user has no control over the desugared code.

Also, in the case of an implicit return on a `.await` expression, ensure
that the suggested `return` is emitted at the right place instead of
before the `await` keyword.
@samueltardieu
Copy link
Contributor Author

Rebased

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-review Status: Awaiting review from the assignee but also interested parties
Projects
None yet
Development

Successfully merging this pull request may close these issues.

implicit_return on deny falsely adds return in front of the code block for async closures
3 participants