-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Stabilize assert_matches
and move it to core::macros
#137487
base: master
Are you sure you want to change the base?
Conversation
assert_matches
and move it to core::macros
HIR ty lowering was modified cc @fmease Some changes occurred to the core trait solver cc @rust-lang/initiative-trait-system-refactor The run-make-support library was changed cc @jieyouxu Some changes occurred to the CTFE machinery cc @rust-lang/wg-const-eval Some changes occurred in src/tools/rustfmt cc @rust-lang/rustfmt Some changes occurred in src/tools/clippy cc @rust-lang/clippy Some changes occurred to MIR optimizations cc @rust-lang/wg-mir-opt Some changes occurred to the CTFE / Miri interpreter cc @rust-lang/miri |
To all the people that got cc'd feel free to check the changes, but they should only amount to import renames. |
This comment has been minimized.
This comment has been minimized.
Closes rust-lang#82775 This is a revive of rust-lang#120234, with the suggested move from the public assert_matches module to macros. This necessitates the rename of the internal macros modules to core_macros and std_macros respectively.
01b7c95
to
6859a17
Compare
This comment has been minimized.
This comment has been minimized.
Changing the filename of the private macros modules has wide reaching effects inside the rustc source code. Mostly the fix is to rename mentions to the path outside of rust code as in the error tests, but there are some places like |
The Miri subtree was changed cc @rust-lang/miri The rustc-dev-guide subtree was changed. If this PR only touches the dev guide consider submitting a PR directly to rust-lang/rustc-dev-guide otherwise thank you for updating the dev guide with your changes. |
This comment has been minimized.
This comment has been minimized.
Needed for doc intra links
This comment has been minimized.
This comment has been minimized.
Hmm, I found the FCP to stabilize in #82775 (comment) But I couldn't find any decision on the module. So nominating for libs-api to weigh in on that part. |
The module name was suggested here #120234 (comment) and here #120234 (comment)
Given how popular this feature is and the previously expressed desires of the libs-api team to avoid blocking on bikesheding, I'd appreciate it if we could avoid another round of bikesheding here. |
Plus this PR has to touch a lot of files by necessity, so it be great if we could move forward in a reasonable amount of time to limit the amount of merge conflict resolution I'll have to do. |
Process-wise, a meeting consensus is generally not enough to make a one-way decision like picking a stable path, and it seems clear that this wasn't part of the previous FCP, so I'm not comfortable merging it without explicit libs-api assent. If they disagree with my assessment that's fine, but it's their decision to make. |
Neither am I. Let's please ask for their approval. What I'd like to avoid is a situation where we block this because the team is happy enough with the name but maybe there could be a better one and so the discussion starts. |
In a libs-api meeting, @Amanieu asked whether enough time has passed for compatibility to improve to the point that we could ship this in the crate root alongside all the other macros. (I don't know the answer to that question; I'm passing it along.) |
The issue of macro collision was raised here #82913 and from what I can tell it's still relevant. I'd prefer to do the breakage via a Rust edition change. The vast majority of users uses stable, and there if they want to use I suggest moving forward with the minimal breakage path. @joshtriplett is the libs-api team happy enough with the |
I don't think a Fundamentally the breakage comes from the fact that Now, the standard library prelude is imported by injecting this code into each crate: #[prelude_import]
use ::std::prelude::rust_2024::*;
#[macro_use]
extern crate std; Instead of importing all macros from |
@Amanieu I like the idea, I'll look into implementing it. Could you please give me some pointers into non obvious things I'd need to keep in mind when changing the prelude, or other side-effects of such a change. |
In theory it should be as easy as removing |
Closes #82775
This is a revive of #120234, with the suggested move from the public
assert_matches
module tomacros
. This necessitates the rename of the internal macros modules tocore_macros
andstd_macros
respectively.