File tree Expand file tree Collapse file tree 4 files changed +28
-5
lines changed Expand file tree Collapse file tree 4 files changed +28
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 0da105a8b7b6b1e0568e8ff20f6ff4b13cc7ecc2
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: da4383203472a2e5fd4d3fcc67672d8d8ccafdea
4
+ refs/heads/snap-stage3: 2d8dd6afd4ef36742b4e8a4e848e13ddbe275fe8
5
5
refs/heads/try: c274a6888410ce3e357e014568b43310ed787d36
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
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