Fix detection of macro file in inactive-code diag

This commit is contained in:
Jonas Schievink 2021-08-04 18:02:45 +02:00
parent 1b02cafa43
commit 260936d0b7
2 changed files with 5 additions and 1 deletions

View file

@ -173,6 +173,10 @@ impl HirFileId {
_ => false,
}
}
pub fn is_macro(self) -> bool {
matches!(self.0, HirFileIdRepr::MacroFile(_))
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]