]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/lib.rs
Changed issue number to 36105
[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 #![cfg_attr(not(stage0), deny(warnings))]
26
27 #![feature(associated_consts)]
28 #![feature(const_fn)]
29 #![feature(filling_drop)]
30 #![feature(libc)]
31 #![feature(rustc_private)]
32 #![feature(staged_api)]
33 #![feature(str_escape)]
34 #![feature(unicode)]
35 #![feature(question_mark)]
36 #![feature(rustc_diagnostic_macros)]
37
38 extern crate serialize;
39 extern crate term;
40 extern crate libc;
41 #[macro_use] extern crate log;
42 #[macro_use] #[no_link] extern crate rustc_bitflags;
43 extern crate rustc_unicode;
44 pub extern crate rustc_errors as errors;
45 extern crate syntax_pos;
46
47 extern crate serialize as rustc_serialize; // used by deriving
48
49
50 // A variant of 'try!' that panics on an Err. This is used as a crutch on the
51 // way towards a non-panic!-prone parser. It should be used for fatal parsing
52 // errors; eventually we plan to convert all code using panictry to just use
53 // normal try.
54 // Exported for syntax_ext, not meant for general use.
55 #[macro_export]
56 macro_rules! panictry {
57     ($e:expr) => ({
58         use std::result::Result::{Ok, Err};
59         use errors::FatalError;
60         match $e {
61             Ok(e) => e,
62             Err(mut e) => {
63                 e.emit();
64                 panic!(FatalError);
65             }
66         }
67     })
68 }
69
70 #[macro_use]
71 pub mod diagnostics {
72     #[macro_use]
73     pub mod macros;
74     pub mod plugin;
75     pub mod metadata;
76 }
77
78 // NB: This module needs to be declared first so diagnostics are
79 // registered before they are used.
80 pub mod diagnostic_list;
81
82 pub mod util {
83     pub mod interner;
84     pub mod lev_distance;
85     pub mod node_count;
86     pub mod parser;
87     #[cfg(test)]
88     pub mod parser_testing;
89     pub mod small_vector;
90     pub mod move_map;
91
92     mod thin_vec;
93     pub use self::thin_vec::ThinVec;
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 pub mod config;
109 pub mod entry;
110 pub mod feature_gate;
111 pub mod fold;
112 pub mod parse;
113 pub mod ptr;
114 pub mod show_span;
115 pub mod std_inject;
116 pub mod str;
117 pub mod test;
118 pub mod tokenstream;
119 pub mod visit;
120
121 pub mod print {
122     pub mod pp;
123     pub mod pprust;
124 }
125
126 pub mod ext {
127     pub mod base;
128     pub mod build;
129     pub mod expand;
130     pub mod hygiene;
131     pub mod proc_macro_shim;
132     pub mod quote;
133     pub mod source_util;
134
135     pub mod tt {
136         pub mod transcribe;
137         pub mod macro_parser;
138         pub mod macro_rules;
139     }
140 }
141
142 // __build_diagnostic_array! { libsyntax, DIAGNOSTICS }