File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 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 {
236236///
237237/// Unquoting is done with `$`, and works by taking the single next ident as the unquoted term.
238238/// To quote `$` itself, use `$$`.
239+ ///
240+ /// This is a dummy macro, the actual implementation is in quote::Quoter
239241#[ unstable( feature = "proc_macro" , issue = "38356" ) ]
240242#[ macro_export]
241243macro_rules! quote { ( ) => { } }
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ use syntax::parse::token;
2121use syntax:: symbol:: Symbol ;
2222use syntax:: tokenstream;
2323
24+ /// This is the actual quote!() proc macro
25+ ///
26+ /// It is manually loaded in CStore::load_macro_untracked
2427pub struct Quoter ;
2528
2629pub fn unquote < T : Into < TokenStream > + Clone > ( tokens : & T ) -> TokenStream {
You can’t perform that action at this time.
0 commit comments