File tree 3 files changed +6
-6
lines changed 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -249,6 +249,8 @@ mod write {
249
249
*
250
250
*/
251
251
iter crate_export_metas ( & ast:: crate c) -> @ast:: meta_item {
252
+ // FIXME: Need to identify exported attributes as described above,
253
+ // reevaluate how the above strategy fits in with attributes
252
254
for ( ast:: attribute attr in c. node . attrs ) {
253
255
put @attr. node . value ;
254
256
}
Original file line number Diff line number Diff line change 5
5
#[ vers = "0.1" ] ;
6
6
#[ uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf" ] ;
7
7
#[ url = "http://rust-lang.org/src/rustc" ] ;
8
-
9
- meta ( desc = "The Rust compiler" ,
10
- license = "BSD" ) ;
8
+ #[ desc = "The Rust compiler" ] ;
9
+ #[ license = "BSD" ] ;
11
10
12
11
13
12
use std ( name = "std" ,
Original file line number Diff line number Diff line change 2
2
#[vers = "0.1"];
3
3
#[uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297"];
4
4
#[url = "http://rust-lang.org/src/std"];
5
-
6
- meta (comment = "Rust standard library",
7
- license = "BSD");
5
+ #[comment = "Rust standard library"];
6
+ #[license = "BSD"];
8
7
9
8
// Built-in types support modules.
10
9
You can’t perform that action at this time.
0 commit comments