Use dummy implementation

This commit is contained in:
Edwin Cheng 2020-03-24 03:31:53 +08:00
parent 34dc8d25c1
commit 519dc15cb1

View file

@ -25,8 +25,9 @@ impl ProcMacroExpander {
MacroCallKind::Attr(_, name) => name,
};
dbg!(name);
log::debug!("Proc-macro-expanding name = {}", name);
unimplemented!()
// Return nothing for now
return Ok(tt::Subtree::default());
}
}