1
Fork 0
rust/compiler/rustc_ast/src/lib.rs

70 lines
1.6 KiB
Rust
Raw Normal View History

2014-06-09 13:12:30 -07:00
//! The Rust parser and macro expander.
//!
//! # Note
//!
//! This API is completely unstable and subject to change.
2013-03-29 12:51:10 -07:00
2020-09-23 22:08:30 +02:00
#![doc(
html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
test(attr(deny(warnings)))
)]
#![feature(box_syntax)]
2021-01-29 08:31:08 +01:00
#![feature(box_patterns)]
#![feature(const_fn)] // For the `transmute` in `P::new`
#![feature(const_fn_transmute)]
#![feature(const_panic)]
#![feature(crate_visibility_modifier)]
#![feature(label_break_value)]
2019-02-10 16:13:30 +09:00
#![feature(nll)]
#![feature(or_patterns)]
2019-12-22 17:42:04 -05:00
#![recursion_limit = "256"]
#[macro_use]
extern crate rustc_macros;
#[macro_export]
macro_rules! unwrap_or {
($opt:expr, $default:expr) => {
match $opt {
Some(x) => x,
None => $default,
}
2019-12-22 17:42:04 -05:00
};
}
2013-04-03 09:41:40 -07:00
pub mod util {
pub mod classify;
pub mod comments;
pub mod literal;
pub mod parser;
2013-04-03 09:41:40 -07:00
}
pub mod ast;
pub mod attr;
2020-03-21 04:30:30 +01:00
pub mod crate_disambiguator;
pub mod entry;
pub mod expand;
2019-02-06 09:10:05 +11:00
pub mod mut_visit;
pub mod node_id;
pub mod ptr;
2019-10-11 12:46:32 +02:00
pub mod token;
pub mod tokenstream;
pub mod visit;
2020-04-27 23:26:11 +05:30
pub use self::ast::*;
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
2020-03-29 15:24:45 +02:00
/// instead of implementing everything in librustc_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)
}
}