mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			71 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //! The Rust parser and macro expander.
 | |
| //!
 | |
| //! # Note
 | |
| //!
 | |
| //! This API is completely unstable and subject to change.
 | |
| 
 | |
| #![doc(
 | |
|     html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
 | |
|     test(attr(deny(warnings)))
 | |
| )]
 | |
| #![feature(box_syntax)]
 | |
| #![feature(box_patterns)]
 | |
| #![cfg_attr(bootstrap, feature(const_fn_unsize))]
 | |
| #![feature(const_fn_transmute)]
 | |
| #![feature(crate_visibility_modifier)]
 | |
| #![feature(iter_zip)]
 | |
| #![feature(label_break_value)]
 | |
| #![feature(nll)]
 | |
| #![feature(min_specialization)]
 | |
| #![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,
 | |
|         }
 | |
|     };
 | |
| }
 | |
| 
 | |
| pub mod util {
 | |
|     pub mod classify;
 | |
|     pub mod comments;
 | |
|     pub mod literal;
 | |
|     pub mod parser;
 | |
| }
 | |
| 
 | |
| pub mod ast;
 | |
| pub mod ast_like;
 | |
| pub mod attr;
 | |
| pub mod entry;
 | |
| pub mod expand;
 | |
| pub mod mut_visit;
 | |
| pub mod node_id;
 | |
| pub mod ptr;
 | |
| pub mod token;
 | |
| pub mod tokenstream;
 | |
| pub mod visit;
 | |
| 
 | |
| pub use self::ast::*;
 | |
| pub use self::ast_like::AstLike;
 | |
| 
 | |
| 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)
 | |
|     }
 | |
| }
 | 
