Convert most code to new inner attribute syntax.

Closes #2569
This commit is contained in:
Brian Anderson
2014-03-21 18:05:05 -07:00
committed by Alex Crichton
parent c6bbb95ce2
commit 451e8c1c61
327 changed files with 638 additions and 635 deletions

View File

@@ -18,17 +18,17 @@ This API is completely unstable and subject to change.
*/
#[crate_id = "syntax#0.10-pre"];
#[license = "MIT/ASL2"];
#[crate_type = "dylib"];
#[crate_type = "rlib"];
#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://static.rust-lang.org/doc/master")];
#![crate_id = "syntax#0.10-pre"]
#![license = "MIT/ASL2"]
#![crate_type = "dylib"]
#![crate_type = "rlib"]
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://static.rust-lang.org/doc/master")]
#[feature(macro_rules, globs, managed_boxes, default_type_params, phase,
quote)];
#[allow(deprecated)];
#![feature(macro_rules, globs, managed_boxes, default_type_params, phase,
quote)]
#![allow(deprecated)]
extern crate serialize;
extern crate term;