-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Make parse_ident public #51498
Make parse_ident public #51498
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
@bors r+ rollup |
📌 Commit ed74b0b has been approved by |
Rocket is depending on So to not make everything public again maybe it would be worth to create curated list of methods that should be made public. Everything else would stay as it is and broken crates will need to be fixed. |
Rocket uses at least Would another pull request for Rocket's desired public methods be welcome now, or should we try to accumulate a broad list first? |
Opening a PR now is fine, we'll just roll them up together. |
…ochenkov Make parse_ident public `parse_ident` was made private in rust-lang#51265. In rustfmt the method is used to create a custom parser for macro call.
span_fatal and parse_block were made private in rust-lang#51265. These methods are used in stainless. Related rust-lang#51498 rust-lang#51504
Make parse_ident public `parse_ident` was made private in #51265. In rustfmt the method is used to create a custom parser for macro call.
☀️ Test successful - status-appveyor, status-travis |
parse_ident
was made private in #51265. In rustfmt the method is used to create a custom parser for macro call.