diff options
author | Edwin Cheng <[email protected]> | 2020-03-23 19:31:53 +0000 |
---|---|---|
committer | Edwin Cheng <[email protected]> | 2020-03-25 11:50:12 +0000 |
commit | 519dc15cb149a08f4df6746f1e2cb6cd44e3a252 (patch) | |
tree | 0c552f0f2e5a42e36dfb30fc8d39a35b1dbd92a7 /crates/ra_hir_expand/src | |
parent | 34dc8d25c1e461cc311d6d4404f74502513cd3ae (diff) |
Use dummy implementation
Diffstat (limited to 'crates/ra_hir_expand/src')
-rw-r--r-- | crates/ra_hir_expand/src/proc_macro.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/crates/ra_hir_expand/src/proc_macro.rs b/crates/ra_hir_expand/src/proc_macro.rs index 68c828790..a8dee2052 100644 --- a/crates/ra_hir_expand/src/proc_macro.rs +++ b/crates/ra_hir_expand/src/proc_macro.rs | |||
@@ -25,8 +25,9 @@ impl ProcMacroExpander { | |||
25 | MacroCallKind::Attr(_, name) => name, | 25 | MacroCallKind::Attr(_, name) => name, |
26 | }; | 26 | }; |
27 | 27 | ||
28 | dbg!(name); | 28 | log::debug!("Proc-macro-expanding name = {}", name); |
29 | 29 | ||
30 | unimplemented!() | 30 | // Return nothing for now |
31 | return Ok(tt::Subtree::default()); | ||
31 | } | 32 | } |
32 | } | 33 | } |