Diagnose unresolved derive macros

This commit is contained in:
Jonas Schievink 2022-04-27 20:03:57 +02:00
parent 1ad500beb6
commit fa42888e27
6 changed files with 44 additions and 19 deletions

View file

@ -67,8 +67,9 @@ pub struct UnresolvedImport {
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct UnresolvedMacroCall {
pub macro_call: InFile<AstPtr<ast::MacroCall>>,
pub macro_call: InFile<SyntaxNodePtr>,
pub path: ModPath,
pub is_bang: bool,
}
#[derive(Debug, Clone, Eq, PartialEq)]