diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-05-29 19:33:49 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-29 19:33:49 +0100 |
commit | 505329b9bb66484276f2b04ee2aa2c59ccce72d6 (patch) | |
tree | 127d90ba4f4eac66081f9b78a2d53d2d713a0593 /crates/base_db | |
parent | f6da603c7fe56c19a275dc7bab1f30fe1ad39707 (diff) | |
parent | 8c639a87bdbd08b10d4eb84d00f25ba7bcd56be0 (diff) |
Merge #9057
9057: internal: Thread proc-macro types through the HIR r=jonas-schievink a=jonas-schievink
Should help with completion of derives. cc @Veykril
bors r+
Co-authored-by: Jonas Schievink <[email protected]>
Diffstat (limited to 'crates/base_db')
-rw-r--r-- | crates/base_db/src/input.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/base_db/src/input.rs b/crates/base_db/src/input.rs index 64ccd11ee..23cb0c839 100644 --- a/crates/base_db/src/input.rs +++ b/crates/base_db/src/input.rs | |||
@@ -147,7 +147,7 @@ impl CrateDisplayName { | |||
147 | #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)] | 147 | #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)] |
148 | pub struct ProcMacroId(pub u32); | 148 | pub struct ProcMacroId(pub u32); |
149 | 149 | ||
150 | #[derive(Copy, Clone, Eq, PartialEq, Debug)] | 150 | #[derive(Copy, Clone, Eq, PartialEq, Debug, Hash)] |
151 | pub enum ProcMacroKind { | 151 | pub enum ProcMacroKind { |
152 | CustomDerive, | 152 | CustomDerive, |
153 | FuncLike, | 153 | FuncLike, |