aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/macros.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-01-31 10:40:05 +0000
committerAleksey Kladov <[email protected]>2019-01-31 20:23:30 +0000
commitce3636798bc9481ec712b84b5cad9973b7844425 (patch)
tree0f252e18492e50ce8eff8c0aacb249a763601dd0 /crates/ra_hir/src/macros.rs
parent9a043a163c59dd2625727f7ff5466d586625a423 (diff)
move macros to a separate crate
Diffstat (limited to 'crates/ra_hir/src/macros.rs')
-rw-r--r--crates/ra_hir/src/macros.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/crates/ra_hir/src/macros.rs b/crates/ra_hir/src/macros.rs
index dc016a704..7e9aba3f2 100644
--- a/crates/ra_hir/src/macros.rs
+++ b/crates/ra_hir/src/macros.rs
@@ -1,8 +1,3 @@
1#[allow(unused)]
2mod tt;
3#[allow(unused)]
4mod mbe;
5
6/// Machinery for macro expansion. 1/// Machinery for macro expansion.
7/// 2///
8/// One of the more complicated things about macros is managing the source code 3/// One of the more complicated things about macros is managing the source code
@@ -19,6 +14,7 @@ use ra_syntax::{
19 SyntaxKind::*, 14 SyntaxKind::*,
20 ast::{self, NameOwner}, 15 ast::{self, NameOwner},
21}; 16};
17use ra_macros::{tt, mbe};
22 18
23use crate::{HirDatabase, MacroCallId}; 19use crate::{HirDatabase, MacroCallId};
24 20