mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 21:54:42 +00:00
Use dummy implementation
This commit is contained in:
parent
34dc8d25c1
commit
519dc15cb1
1 changed files with 3 additions and 2 deletions
|
@ -25,8 +25,9 @@ impl ProcMacroExpander {
|
||||||
MacroCallKind::Attr(_, name) => name,
|
MacroCallKind::Attr(_, name) => name,
|
||||||
};
|
};
|
||||||
|
|
||||||
dbg!(name);
|
log::debug!("Proc-macro-expanding name = {}", name);
|
||||||
|
|
||||||
unimplemented!()
|
// Return nothing for now
|
||||||
|
return Ok(tt::Subtree::default());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue