File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ impl fmt::Debug for TokenStream {
142
142
}
143
143
}
144
144
145
- #[ unstable( feature = "proc_macro_quote" , issue = "38356 " ) ]
145
+ #[ unstable( feature = "proc_macro_quote" , issue = "54722 " ) ]
146
146
pub use quote:: { quote, quote_span} ;
147
147
148
148
/// Creates a token stream containing a single token tree.
@@ -252,7 +252,7 @@ pub mod token_stream {
252
252
/// To quote `$` itself, use `$$`.
253
253
///
254
254
/// This is a dummy macro, the actual implementation is in `quote::quote`.`
255
- #[ unstable( feature = "proc_macro_quote" , issue = "38356 " ) ]
255
+ #[ unstable( feature = "proc_macro_quote" , issue = "54722 " ) ]
256
256
#[ macro_export]
257
257
macro_rules! quote { ( ) => { } }
258
258
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ macro_rules! quote {
70
70
/// This is the actual `quote!()` proc macro.
71
71
///
72
72
/// It is manually loaded in `CStore::load_macro_untracked`.
73
- #[ unstable( feature = "proc_macro_quote" , issue = "38356 " ) ]
73
+ #[ unstable( feature = "proc_macro_quote" , issue = "54722 " ) ]
74
74
pub fn quote ( stream : TokenStream ) -> TokenStream {
75
75
if stream. is_empty ( ) {
76
76
return quote ! ( :: TokenStream :: new( ) ) ;
@@ -144,7 +144,7 @@ pub fn quote(stream: TokenStream) -> TokenStream {
144
144
145
145
/// Quote a `Span` into a `TokenStream`.
146
146
/// This is needed to implement a custom quoter.
147
- #[ unstable( feature = "proc_macro_quote" , issue = "38356 " ) ]
147
+ #[ unstable( feature = "proc_macro_quote" , issue = "54722 " ) ]
148
148
pub fn quote_span ( _: Span ) -> TokenStream {
149
149
quote ! ( :: Span :: def_site( ) )
150
150
}
You can’t perform that action at this time.
0 commit comments