Closed
Conversation
|
r? @llogiq (rust-highfive has picked a reviewer for you, use r? to override) |
Contributor
|
Wow, that's a rather big one. Will take me a while to review, but I'm on it. |
Contributor
|
Hat's off. This looks great. I found the macro origin messages annoying when I updated the test suite to the 2021 edition. And now they're gone. Thank you! @bors r+ squash |
Contributor
|
📌 Commit 497e879 has been approved by |
Contributor
bors
added a commit
that referenced
this pull request
Jan 4, 2022
New macro utils changelog: none Sorry, this is a big one. A lot of interrelated changes and I wanted to put the new utils to use to make sure they are somewhat battle-tested. We may want to divide some of the lint-specific refactoring commits into batches for smaller reviewing tasks. I could also split into more PRs. Introduces a bunch of new utils at `clippy_utils::macros::...`. Please read through the docs and give any feedback! I'm happy to introduce `MacroCall` and various functions to retrieve an instance. It feels like the missing puzzle piece. I'm also introducing `ExpnId` from rustc as "useful for Clippy too". `@rust-lang/clippy` Fixes #7843 by not parsing every node of macro implementations, at least the major offenders. I probably want to get rid of `is_expn_of` at some point.
Contributor
Author
So much for that 😆 thanks! |
Contributor
|
☀️ Test successful - checks-action_dev_test, checks-action_remark_test, checks-action_test |
This was referenced Jan 4, 2022
Contributor
|
Well, I had a few log-running tests. 😆 |
Contributor
Author
|
Hmm Github doesn't see that this is merged. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
changelog: none
Sorry, this is a big one. A lot of interrelated changes and I wanted to put the new utils to use to make sure they are somewhat battle-tested. We may want to divide some of the lint-specific refactoring commits into batches for smaller reviewing tasks. I could also split into more PRs.
Introduces a bunch of new utils at
clippy_utils::macros::.... Please read through the docs and give any feedback! I'm happy to introduceMacroCalland various functions to retrieve an instance. It feels like the missing puzzle piece. I'm also introducingExpnIdfrom rustc as "useful for Clippy too". @rust-lang/clippyFixes #7843 by not parsing every node of macro implementations, at least the major offenders.
I probably want to get rid of
is_expn_ofat some point.