rust/src/libsyntax/syntax.rc

138 lines
2.8 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 16:41:25 -07:00
vers = "0.5",
uuid = "9311401b-d6ea-4cd9-a1d9-61f89499c645")];
2012-03-22 15:27:35 -07:00
#[crate_type = "lib"];
2012-03-22 15:35:22 -07:00
2012-04-05 17:30:26 -07: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 16:41:25 -07:00
extern mod core(vers = "0.5");
extern mod std(vers = "0.5");
2012-04-05 17:30:26 -07:00
2012-09-05 11:46:25 -07:00
use core::*;
#[legacy_exports]
mod attr;
#[legacy_exports]
2012-03-22 17:31:32 -07:00
mod diagnostic;
2012-03-22 15:35:22 -07: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 17:21:34 -07:00
mod fold;
#[legacy_exports]
2012-03-22 16:58:30 -07:00
mod util {
#[legacy_exports];
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "util/interner.rs"]
2012-03-22 16:58:30 -07:00
mod interner;
}
2012-11-28 16:20:41 -08:00
#[path = "parse/mod.rs"]
2012-11-28 12:33:00 -08:00
mod parse;
mod print {
#[legacy_exports];
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "print/pp.rs"]
mod pp;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "print/pprust.rs"]
mod pprust;
2012-03-29 13:48:05 -07:00
}
mod ext {
#[legacy_exports];
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/base.rs"]
2012-03-29 13:48:05 -07:00
mod base;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/expand.rs"]
2012-03-29 13:48:05 -07:00
mod expand;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/qquote.rs"]
2012-03-29 13:48:05 -07:00
mod qquote;
2012-11-28 12:33:00 -08:00
#[path = "ext/quote.rs"]
mod quote;
2012-11-28 12:33:00 -08:00
#[path = "ext/deriving.rs"]
mod deriving;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/build.rs"]
2012-03-29 13:48:05 -07:00
mod build;
mod tt {
#[legacy_exports];
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/tt/transcribe.rs"]
mod transcribe;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/tt/macro_parser.rs"]
mod macro_parser;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/tt/macro_rules.rs"]
mod macro_rules;
}
2012-06-12 10:59:50 -07:00
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/simplext.rs"]
mod simplext;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/fmt.rs"]
2012-03-29 13:48:05 -07:00
mod fmt;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/env.rs"]
2012-03-29 13:48:05 -07:00
mod env;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/concat_idents.rs"]
2012-03-29 13:48:05 -07:00
mod concat_idents;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/ident_to_str.rs"]
2012-03-29 13:48:05 -07:00
mod ident_to_str;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/log_syntax.rs"]
2012-03-29 13:48:05 -07:00
mod log_syntax;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/auto_serialize.rs"]
2012-03-29 13:48:05 -07:00
mod auto_serialize;
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/source_util.rs"]
mod source_util;
2012-11-28 12:33:00 -08:00
#[legacy_exports]
2012-11-28 16:20:41 -08:00
#[path = "ext/pipes/mod.rs"]
2012-11-28 12:33:00 -08:00
mod pipes;
2012-08-15 10:45:10 -07:00
#[legacy_exports]
2012-11-28 12:33:00 -08:00
#[path = "ext/trace_macros.rs"]
2012-08-15 10:45:10 -07:00
mod trace_macros;
2012-03-29 13:48:05 -07:00
}