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 17
17
18
18
extern crate proc_macro as pm;
19
19
20
+ mod build;
21
+ mod errors;
22
+ // FIXME(Nilstrieb) Translate macro_rules diagnostics
23
+ #[ allow( rustc:: untranslatable_diagnostic) ]
24
+ mod mbe;
20
25
mod placeholders;
21
26
mod proc_macro_server;
22
27
23
28
pub use mbe:: macro_rules:: compile_declarative_macro;
24
29
pub mod base;
25
- pub mod build;
26
30
pub mod config;
27
- pub mod errors;
28
31
pub mod expand;
29
32
pub mod module;
30
-
31
33
// FIXME(Nilstrieb) Translate proc_macro diagnostics
32
34
#[ allow( rustc:: untranslatable_diagnostic) ]
33
35
pub mod proc_macro;
34
36
35
- // FIXME(Nilstrieb) Translate macro_rules diagnostics
36
- #[ allow( rustc:: untranslatable_diagnostic) ]
37
- pub ( crate ) mod mbe;
38
-
39
37
// HACK(Centril, #64197): These shouldn't really be here.
40
38
// Rather, they should be with their respective modules which are defined in other crates.
41
39
// 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