You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement assist to switch between doc and normal comments
Hey first PR to rust-analyzer to get my feet wet with the code base. It's an assist to switch a normal comment to a doc comment and back, something I've found myself doing by hand a couple of times.
I shamelessly stole `relevant_line_comments` from `convert_comment_block`, because I didn't see any inter-assist imports happening in the files I peeked at so I thought this would be preferable.
After #13316 check_match is a major bottleneck in the cycle time of rustc taking 4 times more time than it did before (18-19 s vs 4.5 s).
The main problem is the static inliner which creates new AST nodes. It should be possible to make it not do that.
The text was updated successfully, but these errors were encountered: