]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/lib.rs
Skip checking for unused mutable locals that have no name
[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 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
18        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
19        html_root_url = "https://doc.rust-lang.org/nightly/",
20        test(attr(deny(warnings))))]
21
22 #![feature(unicode_internals)]
23 #![feature(rustc_diagnostic_macros)]
24 #![feature(slice_sort_by_cached_key)]
25 #![feature(non_exhaustive)]
26 #![feature(const_atomic_usize_new)]
27 #![feature(rustc_attrs)]
28
29 #![recursion_limit="256"]
30
31 #[macro_use] extern crate bitflags;
32 extern crate core;
33 extern crate serialize;
34 #[macro_use] extern crate log;
35 pub extern crate rustc_errors as errors;
36 extern crate syntax_pos;
37 extern crate rustc_data_structures;
38 extern crate rustc_target;
39 #[macro_use] extern crate scoped_tls;
40
41 extern crate serialize as rustc_serialize; // used by deriving
42
43 use rustc_data_structures::sync::Lock;
44
45 // A variant of 'try!' that panics on an Err. This is used as a crutch on the
46 // way towards a non-panic!-prone parser. It should be used for fatal parsing
47 // errors; eventually we plan to convert all code using panictry to just use
48 // normal try.
49 // Exported for syntax_ext, not meant for general use.
50 #[macro_export]
51 macro_rules! panictry {
52     ($e:expr) => ({
53         use std::result::Result::{Ok, Err};
54         use errors::FatalError;
55         match $e {
56             Ok(e) => e,
57             Err(mut e) => {
58                 e.emit();
59                 FatalError.raise()
60             }
61         }
62     })
63 }
64
65 #[macro_export]
66 macro_rules! unwrap_or {
67     ($opt:expr, $default:expr) => {
68         match $opt {
69             Some(x) => x,
70             None => $default,
71         }
72     }
73 }
74
75 struct Globals {
76     used_attrs: Lock<Vec<u64>>,
77     known_attrs: Lock<Vec<u64>>,
78     syntax_pos_globals: syntax_pos::Globals,
79 }
80
81 impl Globals {
82     fn new() -> Globals {
83         Globals {
84             used_attrs: Lock::new(Vec::new()),
85             known_attrs: Lock::new(Vec::new()),
86             syntax_pos_globals: syntax_pos::Globals::new(),
87         }
88     }
89 }
90
91 pub fn with_globals<F, R>(f: F) -> R
92     where F: FnOnce() -> R
93 {
94     let globals = Globals::new();
95     GLOBALS.set(&globals, || {
96         syntax_pos::GLOBALS.set(&globals.syntax_pos_globals, f)
97     })
98 }
99
100 scoped_thread_local!(static GLOBALS: Globals);
101
102 #[macro_use]
103 pub mod diagnostics {
104     #[macro_use]
105     pub mod macros;
106     pub mod plugin;
107     pub mod metadata;
108 }
109
110 // NB: This module needs to be declared first so diagnostics are
111 // registered before they are used.
112 pub mod diagnostic_list;
113
114 pub mod util {
115     pub mod lev_distance;
116     pub mod node_count;
117     pub mod parser;
118     #[cfg(test)]
119     pub mod parser_testing;
120     pub mod small_vector;
121     pub mod move_map;
122
123     mod thin_vec;
124     pub use self::thin_vec::ThinVec;
125
126     mod rc_slice;
127     pub use self::rc_slice::RcSlice;
128 }
129
130 pub mod json;
131
132 pub mod syntax {
133     pub use ext;
134     pub use parse;
135     pub use ast;
136 }
137
138 pub mod ast;
139 pub mod attr;
140 pub mod codemap;
141 #[macro_use]
142 pub mod config;
143 pub mod entry;
144 pub mod edition;
145 pub mod feature_gate;
146 pub mod fold;
147 pub mod parse;
148 pub mod ptr;
149 pub mod show_span;
150 pub mod std_inject;
151 pub mod str;
152 pub use syntax_pos::symbol;
153 pub mod test;
154 pub mod tokenstream;
155 pub mod visit;
156
157 pub mod print {
158     pub mod pp;
159     pub mod pprust;
160 }
161
162 pub mod ext {
163     pub use syntax_pos::hygiene;
164     pub mod base;
165     pub mod build;
166     pub mod derive;
167     pub mod expand;
168     pub mod placeholders;
169     pub mod quote;
170     pub mod source_util;
171
172     pub mod tt {
173         pub mod transcribe;
174         pub mod macro_parser;
175         pub mod macro_rules;
176         pub mod quoted;
177     }
178 }
179
180 #[cfg(test)]
181 mod test_snippet;
182
183 __build_diagnostic_array! { libsyntax, DIAGNOSTICS }