-
Notifications
You must be signed in to change notification settings - Fork 12.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
Modifies how Arg, Arm, Field, FieldPattern and Variant are visited #63854
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
r=me after re-grouping the visiting functions a bit (#63854 (comment)). |
Part of the necessary work to accomplish rust-lang#63468.
@rustbot modify labels to +S-waiting-on-review , -S-waiting-on-author |
Error: Parsing label command in comment failed: ...review , -|error: empty label at >| S-waiting... Please let |
Thanks! |
📌 Commit 6a3d517 has been approved by |
Modifies how Arg, Arm, Field, FieldPattern and Variant are visited Part of the necessary work to accomplish rust-lang#63468.
Modifies how Arg, Arm, Field, FieldPattern and Variant are visited Part of the necessary work to accomplish rust-lang#63468.
Modifies how Arg, Arm, Field, FieldPattern and Variant are visited Part of the necessary work to accomplish rust-lang#63468.
Rollup of 6 pull requests Successful merges: - #62744 (Refactor `TinyList::contains` and `len` to iterate instead of recurse) - #63813 (Do not suggest `.try_into()` on `i32::from(x)`) - #63833 (Suggest calling closure with resolved return type when appropriate) - #63839 (Ensure miri can do bit ops on pointer values) - #63854 (Modifies how Arg, Arm, Field, FieldPattern and Variant are visited) - #63859 (Don't unwrap the result of `span_to_snippet`) Failed merges: r? @ghost
☔ The latest upstream changes (presumably #63873) made this pull request unmergeable. Please resolve the merge conflicts. |
Did you forget to modify rust/src/librustc/hir/intravisit.rs Lines 335 to 337 in 9267119
|
Rustup to rust-lang/rust#63854 changelog: none
No. The roots of A more complete modification can be provided in another PR |
Thanks. I asked because clippy broken since this PR. It seems like I need to wait for another PR? |
I can do this in the next few days |
@lzutao Clippy should already be fixed with rust-lang/rust-clippy#4447 |
With this PR, an implementation of |
Using |
Do not forget about
|
This lint was originally implementing |
Part of the necessary work to accomplish #63468.