]> git.proxmox.com Git - rustc.git/blob - src/libsyntax/lib.rs
7333265bdd41246bc0ea2afbe2385814d2e081a2
[rustc.git] / src / libsyntax / lib.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! The Rust parser and macro expander.
12 //!
13 //! # Note
14 //!
15 //! This API is completely unstable and subject to change.
16
17 // Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
18 #![cfg_attr(stage0, feature(custom_attribute))]
19 #![crate_name = "syntax"]
20 #![unstable(feature = "rustc_private")]
21 #![staged_api]
22 #![crate_type = "dylib"]
23 #![crate_type = "rlib"]
24 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
25 html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
26 html_root_url = "http://doc.rust-lang.org/nightly/")]
27
28 #![feature(associated_consts)]
29 #![feature(bitset)]
30 #![feature(drain)]
31 #![feature(filling_drop)]
32 #![feature(libc)]
33 #![feature(ref_slice)]
34 #![feature(rustc_private)]
35 #![feature(staged_api)]
36 #![feature(str_char)]
37 #![feature(str_escape)]
38 #![feature(unicode)]
39 #![feature(vec_push_all)]
40
41 extern crate fmt_macros;
42 extern crate serialize;
43 extern crate term;
44 extern crate libc;
45 #[macro_use] extern crate log;
46 #[macro_use] #[no_link] extern crate rustc_bitflags;
47
48 extern crate serialize as rustc_serialize; // used by deriving
49
50 // A variant of 'try!' that panics on Err(FatalError). This is used as a
51 // crutch on the way towards a non-panic!-prone parser. It should be used
52 // for fatal parsing errors; eventually we plan to convert all code using
53 // panictry to just use normal try
54 macro_rules! panictry {
55 ($e:expr) => ({
56 use std::result::Result::{Ok, Err};
57 use diagnostic::FatalError;
58 match $e {
59 Ok(e) => e,
60 Err(FatalError) => panic!(FatalError)
61 }
62 })
63 }
64
65 pub mod util {
66 pub mod interner;
67 #[cfg(test)]
68 pub mod parser_testing;
69 pub mod small_vector;
70 }
71
72 pub mod diagnostics {
73 pub mod macros;
74 pub mod plugin;
75 pub mod registry;
76 pub mod metadata;
77 }
78
79 pub mod syntax {
80 pub use ext;
81 pub use parse;
82 pub use ast;
83 }
84
85 pub mod abi;
86 pub mod ast;
87 pub mod ast_util;
88 pub mod attr;
89 pub mod codemap;
90 pub mod config;
91 pub mod diagnostic;
92 pub mod feature_gate;
93 pub mod fold;
94 pub mod owned_slice;
95 pub mod parse;
96 pub mod ptr;
97 pub mod show_span;
98 pub mod std_inject;
99 pub mod str;
100 pub mod test;
101 pub mod visit;
102
103 pub mod print {
104 pub mod pp;
105 pub mod pprust;
106 }
107
108 pub mod ext {
109 pub mod asm;
110 pub mod base;
111 pub mod build;
112 pub mod cfg;
113 pub mod concat;
114 pub mod concat_idents;
115 pub mod deriving;
116 pub mod env;
117 pub mod expand;
118 pub mod format;
119 pub mod log_syntax;
120 pub mod mtwt;
121 pub mod quote;
122 pub mod source_util;
123 pub mod trace_macros;
124
125 pub mod tt {
126 pub mod transcribe;
127 pub mod macro_parser;
128 pub mod macro_rules;
129 }
130 }