-
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
Speed up resolving a "Generate delegate method" assist #19362
Conversation
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.
Overall this sounds reasonable to me
@@ -32,7 +32,7 @@ pub(crate) fn add_braces(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<( | |||
let (expr_type, expr) = get_replacement_node(ctx)?; | |||
|
|||
acc.add( | |||
AssistId("add_braces", AssistKind::RefactorRewrite), | |||
AssistId("add_braces", AssistKind::RefactorRewrite, None), |
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.
It would likely be nicer to have a constructor function for the None
case here, something like
AssistId("add_braces", AssistKind::RefactorRewrite, None), | |
assist_id("add_braces", AssistKind::RefactorRewrite), |
or
AssistId("add_braces", AssistKind::RefactorRewrite, None), | |
AssistId::refactor_rewrite(add_braces"), |
To keep the group one long but the common case short?
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 force-pushed a new version with the second option. I chose it over the first one because it resulted in more concise code. Thanks for the suggestion.
c86a7fe
to
3a68f9a
Compare
Fix rust-lang#19322 Sometimes there are 185 "Generate delegate" assists with the same assist_id and asssist_kind. This commit introduces and additional differentiator: assist_subtype. Therefore, when the LSP client sends an assist resolve request, rust-analyzer only need to compute edits for a single assist instead of 185.
Make it compile by adding a `None` subtype to rest of the AssistId instantiations.
I've resolved the merge conflict. Is there anything more that I need to do here? Thanks. |
Nope, should be good to go |
To advance the discussion of #19322 this pull request implements the solution outlined there. The PR is split into two parts. The first one contains the core idea, while the boring second part makes sure rust-analyzer compiles after the extension of struct
AssistId
.Part 1
Fix #19322
Sometimes there are 185 "Generate delegate" assists with the same
assist_id and asssist_kind. This commit introduces and additional
differentiator: assist_subtype. Therefore, when the LSP client sends
an assist resolve request, rust-analyzer only need to compute edits
for a single assist instead of 185.
Part 2
Make it compile by adding a
None
subtype to rest of the AssistIdinstantiations.