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