File tree 1 file changed +0
-7
lines changed
1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 15
15
//! function-like macros `#[proc_macro]`, macro attributes `#[proc_macro_attribute]` and
16
16
//! custom derive attributes`#[proc_macro_derive]`.
17
17
//!
18
- //! Note that this crate is intentionally bare-bones currently.
19
- //! This functionality is intended to be expanded over time as more surface
20
- //! area for macro authors is stabilized.
21
- //!
22
18
//! See [the book](../book/first-edition/procedural-macros.html) for more.
23
19
24
20
#![ stable( feature = "proc_macro_lib" , since = "1.15.0" ) ]
@@ -73,9 +69,6 @@ use syntax_pos::{Pos, FileName};
73
69
///
74
70
/// This is both the input and output of `#[proc_macro]`, `#[proc_macro_attribute]`
75
71
/// and `#[proc_macro_derive]` definitions.
76
- ///
77
- /// The API of this type is intentionally bare-bones, but it'll be expanded over
78
- /// time!
79
72
#[ stable( feature = "proc_macro_lib" , since = "1.15.0" ) ]
80
73
#[ derive( Clone ) ]
81
74
pub struct TokenStream ( tokenstream:: TokenStream ) ;
You can’t perform that action at this time.
0 commit comments