]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_ast/src/lib.rs
Rollup merge of #107422 - Nilstrieb:erase-the-ice, r=compiler-errors
[rust.git] / compiler / rustc_ast / src / lib.rs
1 //! The Rust Abstract Syntax Tree (AST).
2 //!
3 //! # Note
4 //!
5 //! This API is completely unstable and subject to change.
6
7 #![doc(
8     html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
9     test(attr(deny(warnings)))
10 )]
11 #![feature(associated_type_bounds)]
12 #![feature(box_patterns)]
13 #![feature(const_default_impls)]
14 #![feature(const_trait_impl)]
15 #![feature(if_let_guard)]
16 #![feature(let_chains)]
17 #![feature(min_specialization)]
18 #![feature(negative_impls)]
19 #![feature(stmt_expr_attributes)]
20 #![recursion_limit = "256"]
21 #![deny(rustc::untranslatable_diagnostic)]
22 #![deny(rustc::diagnostic_outside_of_impl)]
23
24 #[macro_use]
25 extern crate rustc_macros;
26
27 #[macro_use]
28 extern crate tracing;
29
30 pub mod util {
31     pub mod case;
32     pub mod classify;
33     pub mod comments;
34     pub mod literal;
35     pub mod parser;
36     pub mod unicode;
37 }
38
39 pub mod ast;
40 pub mod ast_traits;
41 pub mod attr;
42 pub mod entry;
43 pub mod expand;
44 pub mod format;
45 pub mod mut_visit;
46 pub mod node_id;
47 pub mod ptr;
48 pub mod token;
49 pub mod tokenstream;
50 pub mod visit;
51
52 pub use self::ast::*;
53 pub use self::ast_traits::{AstDeref, AstNodeWrapper, HasAttrs, HasNodeId, HasSpan, HasTokens};
54 pub use self::format::*;
55
56 use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
57
58 /// Requirements for a `StableHashingContext` to be used in this crate.
59 /// This is a hack to allow using the `HashStable_Generic` derive macro
60 /// instead of implementing everything in `rustc_middle`.
61 pub trait HashStableContext: rustc_span::HashStableContext {
62     fn hash_attr(&mut self, _: &ast::Attribute, hasher: &mut StableHasher);
63 }
64
65 impl<AstCtx: crate::HashStableContext> HashStable<AstCtx> for ast::Attribute {
66     fn hash_stable(&self, hcx: &mut AstCtx, hasher: &mut StableHasher) {
67         hcx.hash_attr(self, hasher)
68     }
69 }