Skip to content

Commit 519dc15

Browse files
committed
Use dummy implementation
1 parent 34dc8d2 commit 519dc15

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crates/ra_hir_expand/src/proc_macro.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ impl ProcMacroExpander {
2525
MacroCallKind::Attr(_, name) => name,
2626
};
2727

28-
dbg!(name);
28+
log::debug!("Proc-macro-expanding name = {}", name);
2929

30-
unimplemented!()
30+
// Return nothing for now
31+
return Ok(tt::Subtree::default());
3132
}
3233
}

0 commit comments

Comments
 (0)