rust/compiler/rustc_ast/src/lib.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.6 KiB
Rust
Raw Normal View History

//! The Rust Abstract Syntax Tree (AST).
2014-06-09 20:12:30 +00:00
//!
//! # Note
//!
//! This API is completely unstable and subject to change.
2013-03-29 19:51:10 +00:00
2020-09-23 20:08:30 +00:00
#![doc(
html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
test(attr(deny(warnings)))
)]
#![feature(associated_type_bounds)]
2021-01-29 07:31:08 +00:00
#![feature(box_patterns)]
#![feature(const_default_impls)]
#![feature(const_trait_impl)]
2021-08-16 15:29:49 +00:00
#![feature(if_let_guard)]
#![feature(label_break_value)]
#![feature(min_specialization)]
#![feature(negative_impls)]
#![feature(slice_internals)]
#![feature(stmt_expr_attributes)]
#![recursion_limit = "256"]
#[macro_use]
extern crate rustc_macros;
2013-04-03 16:41:40 +00:00
pub mod util {
pub mod classify;
pub mod comments;
pub mod literal;
pub mod parser;
pub mod unicode;
2013-04-03 16:41:40 +00:00
}
pub mod ast;
pub mod ast_traits;
pub mod attr;
pub mod entry;
pub mod expand;
2019-02-05 22:10:05 +00:00
pub mod mut_visit;
pub mod node_id;
pub mod ptr;
2019-10-11 10:46:32 +00:00
pub mod token;
pub mod tokenstream;
pub mod visit;
2020-04-27 17:56:11 +00:00
pub use self::ast::*;
pub use self::ast_traits::{AstDeref, AstNodeWrapper, HasAttrs, HasNodeId, HasSpan, HasTokens};
2020-04-27 17:56:11 +00:00
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
/// Requirements for a `StableHashingContext` to be used in this crate.
/// This is a hack to allow using the `HashStable_Generic` derive macro
/// instead of implementing everything in `rustc_middle`.
pub trait HashStableContext: rustc_span::HashStableContext {
fn hash_attr(&mut self, _: &ast::Attribute, hasher: &mut StableHasher);
}
impl<AstCtx: crate::HashStableContext> HashStable<AstCtx> for ast::Attribute {
fn hash_stable(&self, hcx: &mut AstCtx, hasher: &mut StableHasher) {
hcx.hash_attr(self, hasher)
}
}