From d89fb1dee5bf47ae9bd9051b296da379e01f1755 Mon Sep 17 00:00:00 2001 From: est31 Date: Tue, 18 Oct 2022 17:10:09 +0200 Subject: [PATCH] Stabilize proc_macro::Span::source_text Splits proc_macro::Span::source_text into a new feature gate and stabilizes it. --- library/proc_macro/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/proc_macro/src/lib.rs b/library/proc_macro/src/lib.rs index f9c7d3e172c..8001fcff648 100644 --- a/library/proc_macro/src/lib.rs +++ b/library/proc_macro/src/lib.rs @@ -546,7 +546,7 @@ pub fn eq(&self, other: &Span) -> bool { /// Note: The observable result of a macro should only rely on the tokens and /// not on this source text. The result of this function is a best effort to /// be used for diagnostics only. - #[unstable(feature = "proc_macro_span", issue = "54725")] + #[stable(feature = "proc_macro_source_text", since = "CURRENT_RUSTC_VERSION")] pub fn source_text(&self) -> Option { self.0.source_text() } -- 2.44.0