]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/lib.rs
add inline attributes to stage 0 methods
[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 #![crate_name = "syntax"]
18 #![unstable(feature = "rustc_private", issue = "27812")]
19 #![crate_type = "dylib"]
20 #![crate_type = "rlib"]
21 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
22        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
23        html_root_url = "https://doc.rust-lang.org/nightly/",
24        test(attr(deny(warnings))))]
25 #![deny(warnings)]
26
27 #![feature(associated_consts)]
28 #![feature(const_fn)]
29 #![feature(optin_builtin_traits)]
30 #![feature(rustc_private)]
31 #![feature(staged_api)]
32 #![feature(str_escape)]
33 #![feature(unicode)]
34 #![feature(rustc_diagnostic_macros)]
35 #![feature(specialization)]
36 #![feature(i128_type)]
37
38 extern crate serialize;
39 #[macro_use] extern crate log;
40 #[macro_use] #[no_link] extern crate rustc_bitflags;
41 extern crate std_unicode;
42 pub extern crate rustc_errors as errors;
43 extern crate syntax_pos;
44 extern crate rustc_data_structures;
45
46 extern crate serialize as rustc_serialize; // used by deriving
47
48 // A variant of 'try!' that panics on an Err. This is used as a crutch on the
49 // way towards a non-panic!-prone parser. It should be used for fatal parsing
50 // errors; eventually we plan to convert all code using panictry to just use
51 // normal try.
52 // Exported for syntax_ext, not meant for general use.
53 #[macro_export]
54 macro_rules! panictry {
55     ($e:expr) => ({
56         use std::result::Result::{Ok, Err};
57         use errors::FatalError;
58         match $e {
59             Ok(e) => e,
60             Err(mut e) => {
61                 e.emit();
62                 panic!(FatalError);
63             }
64         }
65     })
66 }
67
68 #[macro_use]
69 pub mod diagnostics {
70     #[macro_use]
71     pub mod macros;
72     pub mod plugin;
73     pub mod metadata;
74 }
75
76 // NB: This module needs to be declared first so diagnostics are
77 // registered before they are used.
78 pub mod diagnostic_list;
79
80 pub mod util {
81     pub mod lev_distance;
82     pub mod node_count;
83     pub mod parser;
84     #[cfg(test)]
85     pub mod parser_testing;
86     pub mod small_vector;
87     pub mod move_map;
88
89     mod thin_vec;
90     pub use self::thin_vec::ThinVec;
91
92     mod rc_slice;
93     pub use self::rc_slice::RcSlice;
94 }
95
96 pub mod json;
97
98 pub mod syntax {
99     pub use ext;
100     pub use parse;
101     pub use ast;
102 }
103
104 pub mod abi;
105 pub mod ast;
106 pub mod attr;
107 pub mod codemap;
108 #[macro_use]
109 pub mod config;
110 pub mod entry;
111 pub mod feature_gate;
112 pub mod fold;
113 pub mod parse;
114 pub mod ptr;
115 pub mod show_span;
116 pub mod std_inject;
117 pub mod str;
118 pub mod symbol;
119 pub mod test;
120 pub mod tokenstream;
121 pub mod visit;
122
123 pub mod print {
124     pub mod pp;
125     pub mod pprust;
126 }
127
128 pub mod ext {
129     pub mod base;
130     pub mod build;
131     pub mod derive;
132     pub mod expand;
133     pub mod placeholders;
134     pub mod hygiene;
135     pub mod quote;
136     pub mod source_util;
137
138     pub mod tt {
139         pub mod transcribe;
140         pub mod macro_parser;
141         pub mod macro_rules;
142         pub mod quoted;
143     }
144 }
145
146 #[cfg(test)]
147 mod test_snippet;
148
149 // __build_diagnostic_array! { libsyntax, DIAGNOSTICS }