aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_expand
diff options
context:
space:
mode:
authorJonas Schievink <[email protected]>2021-05-20 19:40:02 +0100
committerJonas Schievink <[email protected]>2021-05-20 19:40:02 +0100
commit6f19484c93b1d3bcbef8a271443742a3db3e8fae (patch)
tree024719fdb69de56eadad477026a2df230cf66a1f /crates/hir_expand
parentdf824c2f81db07782a6f64c31e5981ba1593256e (diff)
Support `#[register_attr]` and `#[register_tool]`
Diffstat (limited to 'crates/hir_expand')
-rw-r--r--crates/hir_expand/src/name.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/hir_expand/src/name.rs b/crates/hir_expand/src/name.rs
index 5a5dc9afd..ef67ea2e9 100644
--- a/crates/hir_expand/src/name.rs
+++ b/crates/hir_expand/src/name.rs
@@ -164,6 +164,8 @@ pub mod known {
164 doc, 164 doc,
165 cfg, 165 cfg,
166 cfg_attr, 166 cfg_attr,
167 register_attr,
168 register_tool,
167 // Components of known path (value or mod name) 169 // Components of known path (value or mod name)
168 std, 170 std,
169 core, 171 core,