mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-20 11:37:32 +00:00
23 lines
556 B
Rust
23 lines
556 B
Rust
//! Functions and types dealing with attributes and meta items.
|
|
//!
|
|
//! FIXME(Centril): For now being, much of the logic is still in `rustc_ast::attr`.
|
|
//! The goal is to move the definition of `MetaItem` and things that don't need to be in `syntax`
|
|
//! to this crate.
|
|
|
|
#![cfg_attr(bootstrap, feature(let_chains))]
|
|
#![feature(let_else)]
|
|
|
|
#[macro_use]
|
|
extern crate rustc_macros;
|
|
|
|
mod builtin;
|
|
|
|
pub use builtin::*;
|
|
pub use IntType::*;
|
|
pub use ReprAttr::*;
|
|
pub use StabilityLevel::*;
|
|
|
|
pub use rustc_ast::attr::*;
|
|
|
|
pub(crate) use rustc_ast::HashStableContext;
|