diff options
| author | Aleksey Kladov <aleksey.kladov@gmail.com> | 2019-09-22 18:28:32 +0300 |
|---|---|---|
| committer | Aleksey Kladov <aleksey.kladov@gmail.com> | 2019-09-22 20:30:03 +0300 |
| commit | e30c5166db72f9f1ceccc355df25b49df826df02 (patch) | |
| tree | 2675197b2a613745bb62545e3281877df79ecd7f /src/libsyntax/lib.rs | |
| parent | 49f849cdb7910162f15ac6ac26a98ba22009dc9a (diff) | |
| download | rust-e30c5166db72f9f1ceccc355df25b49df826df02.tar.gz rust-e30c5166db72f9f1ceccc355df25b49df826df02.zip | |
move mbe module to a separate file
Diffstat (limited to 'src/libsyntax/lib.rs')
| -rw-r--r-- | src/libsyntax/lib.rs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index 045a3693188..402d563010f 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -169,13 +169,7 @@ pub mod ext { pub mod expand; pub mod proc_macro; - crate mod mbe { - crate mod transcribe; - crate mod macro_check; - crate mod macro_parser; - crate mod macro_rules; - crate mod quoted; - } + crate mod mbe; } pub mod early_buffered_lints; |
