Skip to content

Commit e30c516

Browse files
committed
move mbe module to a separate file
1 parent 49f849c commit e30c516

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

src/libsyntax/ext/mbe.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
crate mod transcribe;
2+
crate mod macro_check;
3+
crate mod macro_parser;
4+
crate mod macro_rules;
5+
crate mod quoted;

src/libsyntax/lib.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,7 @@ pub mod ext {
169169
pub mod expand;
170170
pub mod proc_macro;
171171

172-
crate mod mbe {
173-
crate mod transcribe;
174-
crate mod macro_check;
175-
crate mod macro_parser;
176-
crate mod macro_rules;
177-
crate mod quoted;
178-
}
172+
crate mod mbe;
179173
}
180174

181175
pub mod early_buffered_lints;

0 commit comments

Comments
 (0)