mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-15 16:58:02 +00:00

Rather than adding `get_unused_rule` to the `TTMacroExpander` trait, put it on the concrete `MacroRulesMacroExpander`, and downcast to that type via `Any` in order to call it. Suggested-by: Vadim Petrochenkov <vadim.petrochenkov@gmail.com>
35 lines
916 B
Rust
35 lines
916 B
Rust
// tidy-alphabetical-start
|
|
#![allow(internal_features)]
|
|
#![allow(rustc::diagnostic_outside_of_impl)]
|
|
#![doc(rust_logo)]
|
|
#![feature(array_windows)]
|
|
#![feature(associated_type_defaults)]
|
|
#![feature(if_let_guard)]
|
|
#![feature(macro_metavar_expr)]
|
|
#![feature(proc_macro_diagnostic)]
|
|
#![feature(proc_macro_internals)]
|
|
#![feature(rustdoc_internals)]
|
|
#![feature(try_blocks)]
|
|
#![feature(yeet_expr)]
|
|
// tidy-alphabetical-end
|
|
|
|
mod build;
|
|
mod errors;
|
|
// FIXME(Nilstrieb) Translate macro_rules diagnostics
|
|
#[allow(rustc::untranslatable_diagnostic)]
|
|
mod mbe;
|
|
mod placeholders;
|
|
mod proc_macro_server;
|
|
mod stats;
|
|
|
|
pub use mbe::macro_rules::{MacroRulesMacroExpander, compile_declarative_macro};
|
|
pub mod base;
|
|
pub mod config;
|
|
pub mod expand;
|
|
pub mod module;
|
|
// FIXME(Nilstrieb) Translate proc_macro diagnostics
|
|
#[allow(rustc::untranslatable_diagnostic)]
|
|
pub mod proc_macro;
|
|
|
|
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|