]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/lib.rs
rollup merge of #27664: birkenfeld/patch-1
[rust.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 = "https://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 = "https://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(set_stdio)]
36 #![feature(staged_api)]
37 #![feature(str_char)]
38 #![feature(str_escape)]
39 #![feature(unicode)]
40 #![feature(vec_push_all)]
41
42 extern crate fmt_macros;
43 extern crate serialize;
44 extern crate term;
45 extern crate libc;
46 #[macro_use] extern crate log;
47 #[macro_use] #[no_link] extern crate rustc_bitflags;
48
49 extern crate serialize as rustc_serialize; // used by deriving
50
51 // A variant of 'try!' that panics on Err(FatalError). This is used as a
52 // crutch on the way towards a non-panic!-prone parser. It should be used
53 // for fatal parsing errors; eventually we plan to convert all code using
54 // panictry to just use normal try
55 macro_rules! panictry {
56     ($e:expr) => ({
57         use std::result::Result::{Ok, Err};
58         use diagnostic::FatalError;
59         match $e {
60             Ok(e) => e,
61             Err(FatalError) => panic!(FatalError)
62         }
63     })
64 }
65
66 pub mod util {
67     pub mod interner;
68     #[cfg(test)]
69     pub mod parser_testing;
70     pub mod small_vector;
71 }
72
73 pub mod diagnostics {
74     pub mod macros;
75     pub mod plugin;
76     pub mod registry;
77     pub mod metadata;
78 }
79
80 pub mod syntax {
81     pub use ext;
82     pub use parse;
83     pub use ast;
84 }
85
86 pub mod abi;
87 pub mod ast;
88 pub mod ast_util;
89 pub mod attr;
90 pub mod codemap;
91 pub mod config;
92 pub mod diagnostic;
93 pub mod feature_gate;
94 pub mod fold;
95 pub mod owned_slice;
96 pub mod parse;
97 pub mod ptr;
98 pub mod show_span;
99 pub mod std_inject;
100 pub mod str;
101 pub mod test;
102 pub mod visit;
103
104 pub mod print {
105     pub mod pp;
106     pub mod pprust;
107 }
108
109 pub mod ext {
110     pub mod asm;
111     pub mod base;
112     pub mod build;
113     pub mod cfg;
114     pub mod concat;
115     pub mod concat_idents;
116     pub mod deriving;
117     pub mod env;
118     pub mod expand;
119     pub mod format;
120     pub mod log_syntax;
121     pub mod mtwt;
122     pub mod quote;
123     pub mod pushpop_safe;
124     pub mod source_util;
125     pub mod trace_macros;
126
127     pub mod tt {
128         pub mod transcribe;
129         pub mod macro_parser;
130         pub mod macro_rules;
131     }
132 }