-
Notifications
You must be signed in to change notification settings - Fork 13k
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 proc_macro::Span::source_text #103197
Conversation
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
(rust-highfive has picked a reviewer for you, use r? to override) |
Splits proc_macro::Span::source_text into a new feature gate and stabilizes it.
89fde40
to
d89fb1d
Compare
@bors r+ |
…text, r=petrochenkov Stabilize proc_macro::Span::source_text Splits `proc_macro::Span::source_text` into a new feature gate and stabilizes it. The [FCP is complete](rust-lang#101991 (comment)). ```Rust impl Span { pub fn source_text(&self) -> Option<String>; } ``` Closes rust-lang#101991
…iaskrgr Rollup of 6 pull requests Successful merges: - rust-lang#103197 (Stabilize proc_macro::Span::source_text) - rust-lang#103251 (Fix item declaration highlighting) - rust-lang#103262 (Adjusting test to needs-unwind, with linking issue) - rust-lang#103268 (rustdoc: remove no-op CSS `nav.sub { font-size: 1rem }`) - rust-lang#103272 (Remove extra spaces in docs) - rust-lang#103276 (Erase regions before checking for `Default` in uninitialized binding error) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Splits
proc_macro::Span::source_text
into a new feature gate and stabilizes it. The FCP is complete.Closes #101991