-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Batch up all plugin breaking changes #32767
Conversation
r? @jroesch (rust_highfive has picked a reviewer for you, use r? to override) |
@bors r+ p=100 force |
📌 Commit 0b24c5d has been approved by |
⌛ Testing commit 0b24c5d with merge faca0e2... |
💔 Test failed - auto-win-gnu-32-opt-rustbuild |
@bors retry |
@bors retry force |
@bors force |
⌛ Testing commit 0b24c5d with merge c91993d... |
💔 Test failed - auto-linux-musl-64-opt |
The AST part of rust-lang#31937 Unlike HIR, AST still uses `Option` for field names because parser can't know field indexes reliably due to constructions like ``` struct S(#[cfg(false)] u8, u8); // The index of the second field changes from 1 during parsing to 0 after expansion. ``` and I wouldn't like to put the burden of renaming fields on expansion passes and syntax extensions. plugin-[breaking-change] cc rust-lang#31645 r? @Manishearth
r? @nikomatsakis Conflicts: src/librustc_save_analysis/lib.rs src/libsyntax/ast_util.rs
0b24c5d
to
552af51
Compare
@bors r+ |
📌 Commit 552af51 has been approved by |
@bors force |
💔 Test failed - auto-mac-32-opt |
Huh, that doesn't make any sense, tidy passes everywhere else. |
@bors retry |
@bors force |
#32688 already landed so we should get this into the same nightly.
cc #31645