rust/src/libsyntax/syntax.rc

129 lines
2.6 KiB
Plaintext
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#[link(name = "syntax",
2012-10-12 18:41:25 -05:00
vers = "0.5",
uuid = "9311401b-d6ea-4cd9-a1d9-61f89499c645")];
2012-03-22 17:27:35 -05:00
#[crate_type = "lib"];
2012-03-22 17:35:22 -05:00
2012-04-05 19:30:26 -05:00
#[no_core];
#[legacy_modes];
#[legacy_exports];
#[allow(vecs_implicitly_copyable)];
#[allow(non_camel_case_types)];
#[allow(deprecated_mode)];
#[warn(deprecated_pattern)];
2012-10-12 18:41:25 -05:00
extern mod core(vers = "0.5");
extern mod std(vers = "0.5");
2012-04-05 19:30:26 -05:00
2012-09-05 13:46:25 -05:00
use core::*;
#[legacy_exports]
mod attr;
#[legacy_exports]
2012-03-22 19:31:32 -05:00
mod diagnostic;
2012-03-22 17:35:22 -05:00
mod codemap;
#[legacy_exports]
mod ast;
#[legacy_exports]
mod ast_util;
#[legacy_exports]
mod ast_map;
#[legacy_exports]
mod visit;
#[legacy_exports]
2012-03-22 19:21:34 -05:00
mod fold;
#[legacy_exports]
2012-03-22 18:58:30 -05:00
mod util {
#[legacy_exports];
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "util/interner.rs"]
2012-03-22 18:58:30 -05:00
mod interner;
}
2012-11-28 18:20:41 -06:00
#[path = "parse/mod.rs"]
2012-11-28 14:33:00 -06:00
mod parse;
mod print {
#[legacy_exports];
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "print/pp.rs"]
mod pp;
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "print/pprust.rs"]
mod pprust;
2012-03-29 15:48:05 -05:00
}
mod ext {
#[legacy_exports];
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/base.rs"]
2012-03-29 15:48:05 -05:00
mod base;
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/expand.rs"]
2012-03-29 15:48:05 -05:00
mod expand;
2012-11-28 14:33:00 -06:00
#[path = "ext/quote.rs"]
mod quote;
2012-11-28 14:33:00 -06:00
#[path = "ext/deriving.rs"]
mod deriving;
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/build.rs"]
2012-03-29 15:48:05 -05:00
mod build;
mod tt {
#[legacy_exports];
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/tt/transcribe.rs"]
mod transcribe;
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/tt/macro_parser.rs"]
mod macro_parser;
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/tt/macro_rules.rs"]
mod macro_rules;
}
2012-06-12 12:59:50 -05:00
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/fmt.rs"]
2012-03-29 15:48:05 -05:00
mod fmt;
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/env.rs"]
2012-03-29 15:48:05 -05:00
mod env;
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/concat_idents.rs"]
2012-03-29 15:48:05 -05:00
mod concat_idents;
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/log_syntax.rs"]
2012-03-29 15:48:05 -05:00
mod log_syntax;
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/auto_serialize.rs"]
2012-03-29 15:48:05 -05:00
mod auto_serialize;
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/source_util.rs"]
mod source_util;
2012-11-28 14:33:00 -06:00
#[legacy_exports]
2012-11-28 18:20:41 -06:00
#[path = "ext/pipes/mod.rs"]
2012-11-28 14:33:00 -06:00
mod pipes;
2012-08-15 12:45:10 -05:00
#[legacy_exports]
2012-11-28 14:33:00 -06:00
#[path = "ext/trace_macros.rs"]
2012-08-15 12:45:10 -05:00
mod trace_macros;
2012-03-29 15:48:05 -05:00
}