aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_mbe/src/lib.rs
diff options
context:
space:
mode:
authorEdwin Cheng <[email protected]>2019-04-07 14:42:53 +0100
committerEdwin Cheng <[email protected]>2019-04-07 14:42:53 +0100
commit7f1e93a3c934342a9b9c418865ff395b8ad245ce (patch)
treef31ec549b70a9260939c0fc8c0d4bb6433133a0d /crates/ra_mbe/src/lib.rs
parentaac9dfa46418603940ab2333cfea2190d9464d9e (diff)
Refactoring subtree_source
Diffstat (limited to 'crates/ra_mbe/src/lib.rs')
-rw-r--r--crates/ra_mbe/src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/ra_mbe/src/lib.rs b/crates/ra_mbe/src/lib.rs
index a5b7fab52..38d3ec7e1 100644
--- a/crates/ra_mbe/src/lib.rs
+++ b/crates/ra_mbe/src/lib.rs
@@ -15,10 +15,12 @@ macro_rules! impl_froms {
15 } 15 }
16} 16}
17 17
18mod tt_cursor; 18// mod tt_cursor;
19mod mbe_parser; 19mod mbe_parser;
20mod mbe_expander; 20mod mbe_expander;
21mod syntax_bridge; 21mod syntax_bridge;
22mod tt_cursor;
23mod subtree_source;
22 24
23use ra_syntax::SmolStr; 25use ra_syntax::SmolStr;
24 26