File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -236,6 +236,8 @@ pub mod token_stream {
236
236
///
237
237
/// Unquoting is done with `$`, and works by taking the single next ident as the unquoted term.
238
238
/// To quote `$` itself, use `$$`.
239
+ ///
240
+ /// This is a dummy macro, the actual implementation is in quote::Quoter
239
241
#[ unstable( feature = "proc_macro" , issue = "38356" ) ]
240
242
#[ macro_export]
241
243
macro_rules! quote { ( ) => { } }
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ use syntax::parse::token;
21
21
use syntax:: symbol:: Symbol ;
22
22
use syntax:: tokenstream;
23
23
24
+ /// This is the actual quote!() proc macro
25
+ ///
26
+ /// It is manually loaded in CStore::load_macro_untracked
24
27
pub struct Quoter ;
25
28
26
29
pub fn unquote < T : Into < TokenStream > + Clone > ( tokens : & T ) -> TokenStream {
You can’t perform that action at this time.
0 commit comments