File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
compiler/rustc_expand/src Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 1717
1818extern crate proc_macro as pm;
1919
20+ mod build;
21+ mod errors;
22+ // FIXME(Nilstrieb) Translate macro_rules diagnostics
23+ #[ allow( rustc:: untranslatable_diagnostic) ]
24+ mod mbe;
2025mod placeholders;
2126mod proc_macro_server;
2227
2328pub use mbe:: macro_rules:: compile_declarative_macro;
2429pub mod base;
25- pub mod build;
2630pub mod config;
27- pub mod errors;
2831pub mod expand;
2932pub mod module;
30-
3133// FIXME(Nilstrieb) Translate proc_macro diagnostics
3234#[ allow( rustc:: untranslatable_diagnostic) ]
3335pub mod proc_macro;
3436
35- // FIXME(Nilstrieb) Translate macro_rules diagnostics
36- #[ allow( rustc:: untranslatable_diagnostic) ]
37- pub ( crate ) mod mbe;
38-
3937// HACK(Centril, #64197): These shouldn't really be here.
4038// Rather, they should be with their respective modules which are defined in other crates.
4139// However, since for now constructing a `ParseSess` sorta requires `config` from this crate,
You can’t perform that action at this time.
0 commit comments