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: Remove mutable syntax tree usages from add_missing_match_arms assist #19155

Merged
merged 2 commits into from
Feb 16, 2025

Conversation

ShoyuVanilla
Copy link
Member

Part of #18285

#18459 has removed some of mutable syntax tree usages but there were some leftovers

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Feb 13, 2025
Test::A => ${1:todo!()},
Test::B => ${2:todo!()},
Test::C => ${3:todo!()},$0
});
}"#,
Copy link
Member Author

Choose a reason for hiding this comment

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

The indentation got a bit better

}
}
}

impl ast::LetStmt {
Copy link
Member Author

Choose a reason for hiding this comment

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

These impls utilizes mutable syntax trees and as we are not using these anywhere after this PR, they should be removed, I think

@@ -1377,6 +1375,7 @@ fn main() {
);
}

#[ignore = "FIXME"]
Copy link
Member Author

@ShoyuVanilla ShoyuVanilla Feb 13, 2025

Choose a reason for hiding this comment

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

I just ignored this and the following test temporarily to discuss the details.

Question: this test and the following test contain comments inside match arm lists and without the in-place style mutable syntax tree things it's very hard to preserve them, as we are building new match arm lists rather than editing in-place.
Maybe we can implement some logic to collect comments or whitespace tokens inside the match arms and feed them into match arm list building, but that might be very flacky and verbose 🤔
Should I tread that path or seek other alternatives?

edit: Oh, I forgot that I can insert AST nodes 😅 Nevermind.

Copy link
Member

Choose a reason for hiding this comment

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

This would be "trivially" fixed once we swap to the new trivia model, so if we regress in in that regard its fine once we fix that when we switch to the new trivia model.

Copy link
Member Author

Choose a reason for hiding this comment

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

I've tried inserting new arms in place instead of replacing the whole match arm list but indentations, newlines and commas aren't works well in this case, and making them work in every cases seems quite verbose and flacky.
So, I'm adding some comments addressing this regression

@ShoyuVanilla
Copy link
Member Author

BTW as many of the interesting features/issues are currently blocked on salsa migration and next-gen solver, I'll mainly focus on migrating assists for a while.

@ShoyuVanilla ShoyuVanilla marked this pull request as draft February 13, 2025 18:01
@ShoyuVanilla ShoyuVanilla force-pushed the migrate-missing-match-arms branch from 7166a8e to 7d74f2b Compare February 15, 2025 15:12
@ShoyuVanilla ShoyuVanilla marked this pull request as ready for review February 15, 2025 15:16
@Veykril Veykril added this pull request to the merge queue Feb 16, 2025
Merged via the queue into rust-lang:master with commit 5ec9d9f Feb 16, 2025
9 checks passed
@ShoyuVanilla ShoyuVanilla deleted the migrate-missing-match-arms branch February 16, 2025 15:23
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