mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 04:27:38 +00:00

Currently we always do this: ``` use rustc_fluent_macro::fluent_messages; ... fluent_messages! { "./example.ftl" } ``` But there is no need, we can just do this everywhere: ``` rustc_fluent_macro::fluent_messages! { "./example.ftl" } ``` which is shorter.
30 lines
768 B
Rust
30 lines
768 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.
|
|
|
|
#![allow(internal_features)]
|
|
#![feature(rustdoc_internals)]
|
|
#![doc(rust_logo)]
|
|
#![feature(let_chains)]
|
|
#![deny(rustc::untranslatable_diagnostic)]
|
|
#![deny(rustc::diagnostic_outside_of_impl)]
|
|
|
|
#[macro_use]
|
|
extern crate rustc_macros;
|
|
|
|
mod builtin;
|
|
mod session_diagnostics;
|
|
|
|
pub use builtin::*;
|
|
pub use IntType::*;
|
|
pub use ReprAttr::*;
|
|
pub use StabilityLevel::*;
|
|
|
|
pub use rustc_ast::attr::*;
|
|
|
|
pub(crate) use rustc_session::HashStableContext;
|
|
|
|
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|