-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
internal: Migrate apply_demorgan
to SyntaxEditor
#19171
Conversation
/// 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() | ||
} |
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 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` |
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.
// FIXME: `make::expr_paren` should return a `MethodCallExpr`, not just an `Expr` | |
// FIXME: `make::expr_paren` should return a `ParenExpr`, not just an `Expr` |
6a528d5
to
a0b9931
Compare
Thanks! |
Part of #18285