File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 1515//! function-like macros `#[proc_macro]`, macro attributes `#[proc_macro_attribute]` and
1616//! custom derive attributes`#[proc_macro_derive]`.
1717//!
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- //!
2218//! See [the book](../book/first-edition/procedural-macros.html) for more.
2319
2420#![ stable( feature = "proc_macro_lib" , since = "1.15.0" ) ]
@@ -73,9 +69,6 @@ use syntax_pos::{Pos, FileName};
7369///
7470/// This is both the input and output of `#[proc_macro]`, `#[proc_macro_attribute]`
7571/// and `#[proc_macro_derive]` definitions.
76- ///
77- /// The API of this type is intentionally bare-bones, but it'll be expanded over
78- /// time!
7972#[ stable( feature = "proc_macro_lib" , since = "1.15.0" ) ]
8073#[ derive( Clone ) ]
8174pub struct TokenStream ( tokenstream:: TokenStream ) ;
You can’t perform that action at this time.
0 commit comments