mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-04 14:07:36 +00:00

This makes it easier to open the messages file while developing on features. The commit was the result of automatted changes: for p in compiler/rustc_*; do mv $p/locales/en-US.ftl $p/messages.ftl; rmdir $p/locales; done for p in compiler/rustc_*; do sed -i "s#\.\./locales/en-US.ftl#../messages.ftl#" $p/src/lib.rs; done
30 lines
762 B
Rust
30 lines
762 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.
|
|
|
|
#![feature(let_chains)]
|
|
#![deny(rustc::untranslatable_diagnostic)]
|
|
#![deny(rustc::diagnostic_outside_of_impl)]
|
|
|
|
#[macro_use]
|
|
extern crate rustc_macros;
|
|
|
|
use rustc_errors::{DiagnosticMessage, SubdiagnosticMessage};
|
|
use rustc_macros::fluent_messages;
|
|
|
|
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_ast::HashStableContext;
|
|
|
|
fluent_messages! { "../messages.ftl" }
|