File tree Expand file tree Collapse file tree 3 files changed +27
-4
lines changed Expand file tree Collapse file tree 3 files changed +27
-4
lines changed Original file line number Diff line number Diff line change 27
27
[ extra] ( extra/index.html )
28
28
[ green] ( green/index.html )
29
29
[ native] ( native/index.html )
30
+ [ syntax] ( syntax/index.html )
31
+ [ rustc] ( rustc/index.html )
30
32
31
33
# Tooling
32
34
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
+ /*!
12
+
13
+ The Rust compiler.
14
+
15
+ # Note
16
+
17
+ This API is completely unstable and subject to change.
18
+
19
+ */
20
+
11
21
#[ crate_id = "rustc#0.9" ] ;
12
22
#[ comment = "The Rust compiler" ] ;
13
23
#[ license = "MIT/ASL2" ] ;
14
24
#[ crate_type = "dylib" ] ;
15
25
#[ crate_type = "rlib" ] ;
26
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
27
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
28
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
16
29
17
30
#[ feature( macro_rules, globs, struct_variant, managed_boxes) ] ;
18
31
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- /*! This module contains the Rust parser. It maps source text
12
- * to token trees and to ASTs. It contains code for expanding
13
- * macros.
14
- */
11
+ /*!
12
+
13
+ The Rust parser and macro expander.
14
+
15
+ # Note
16
+
17
+ This API is completely unstable and subject to change.
18
+
19
+ */
15
20
16
21
#[ crate_id = "syntax#0.9" ] ;
17
22
#[ license = "MIT/ASL2" ] ;
18
23
#[ crate_type = "dylib" ] ;
19
24
#[ crate_type = "rlib" ] ;
25
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
26
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
27
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
20
28
21
29
#[ feature( macro_rules, globs, managed_boxes) ] ;
22
30
You can’t perform that action at this time.
0 commit comments