rust/src/libsyntax/lib.rs

70 lines
1.7 KiB
Rust
Raw Normal View History

2014-06-09 20:12:30 +00:00
//! The Rust parser and macro expander.
//!
//! # Note
//!
//! This API is completely unstable and subject to change.
2013-03-29 19:51:10 +00:00
2019-12-22 22:42:04 +00:00
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/", test(attr(deny(warnings))))]
2019-10-08 00:14:42 +00:00
#![feature(bool_to_option)]
#![feature(box_syntax)]
#![feature(const_fn)] // For the `transmute` in `P::new`
#![feature(const_transmute)]
#![feature(crate_visibility_modifier)]
#![feature(label_break_value)]
2019-02-10 07:13:30 +00:00
#![feature(nll)]
2018-08-20 00:51:02 +00:00
#![feature(try_trait)]
#![cfg_attr(bootstrap, feature(slice_patterns))]
#![feature(unicode_internals)]
2019-12-22 22:42:04 +00:00
#![recursion_limit = "256"]
#[macro_export]
macro_rules! unwrap_or {
($opt:expr, $default:expr) => {
match $opt {
Some(x) => x,
None => $default,
}
2019-12-22 22:42:04 +00:00
};
}
2013-04-03 16:41:40 +00:00
pub mod util {
pub mod classify;
pub mod comments;
pub mod lev_distance;
pub mod literal;
2019-12-22 22:42:04 +00:00
pub mod map_in_place;
pub mod parser;
2013-04-03 16:41:40 +00:00
}
pub mod ast;
pub mod attr;
pub mod entry;
pub mod expand;
2019-02-05 22:10:05 +00:00
pub mod mut_visit;
pub mod ptr;
2019-12-22 22:42:04 +00:00
pub use rustc_session::parse as sess;
2019-10-11 10:46:32 +00:00
pub mod token;
pub mod tokenstream;
pub mod visit;
pub mod print {
2019-12-22 22:42:04 +00:00
mod helpers;
pub mod pp;
pub mod pprust;
2012-03-29 20:48:05 +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 librustc.
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)
}
}