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

internal: Migrate apply_demorgan to SyntaxEditor #19171

Merged
merged 3 commits into from
Feb 24, 2025

Conversation

ShoyuVanilla
Copy link
Member

Part of #18285

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Feb 17, 2025
@ShoyuVanilla ShoyuVanilla marked this pull request as draft February 18, 2025 14:56
@ShoyuVanilla ShoyuVanilla marked this pull request as ready for review February 18, 2025 14:58
/// Take all of the tracked syntax mappings, leaving `SyntaxMapping::default()` in its place, if any.
pub fn take(&self) -> SyntaxMapping {
self.mappings.as_ref().map(|mappings| mappings.take()).unwrap_or_default()
}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have many assists that need to capture the reference to SyntaxEditor into the closures that feeded into iterators, and once we do so, we cannot use its SyntaxMappings forever.
I tried this dance but while working on other assists, I found that there are many assists that require it, so instead of it, I'm adding this new method.

@@ -214,6 +330,21 @@ impl SyntaxFactory {
make::expr_empty_block().clone_for_update()
}

pub fn expr_paren(&self, expr: ast::Expr) -> ast::ParenExpr {
// FIXME: `make::expr_paren` should return a `MethodCallExpr`, not just an `Expr`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// FIXME: `make::expr_paren` should return a `MethodCallExpr`, not just an `Expr`
// FIXME: `make::expr_paren` should return a `ParenExpr`, not just an `Expr`

@ShoyuVanilla ShoyuVanilla force-pushed the migrate-de-morgan-assist branch from 6a528d5 to a0b9931 Compare February 24, 2025 13:43
@Veykril Veykril enabled auto-merge February 24, 2025 13:47
@Veykril
Copy link
Member

Veykril commented Feb 24, 2025

Thanks!

@Veykril Veykril added this pull request to the merge queue Feb 24, 2025
Merged via the queue into rust-lang:master with commit f6edb71 Feb 24, 2025
9 checks passed
@ShoyuVanilla ShoyuVanilla deleted the migrate-de-morgan-assist branch February 24, 2025 14:20
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.

3 participants