aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def/src/nameres/collector.rs
diff options
context:
space:
mode:
authorJonas Schievink <[email protected]>2021-06-03 15:11:20 +0100
committerJonas Schievink <[email protected]>2021-06-03 17:09:21 +0100
commit9fdb8f90376c02ec2a267cf9eb3bdb7b6027e1e6 (patch)
treeb816f97fd66df5bb827d7e2456b6a492a7199d34 /crates/hir_def/src/nameres/collector.rs
parente5a2c6596ddd11b0d57042224ac7c1d7691ec33b (diff)
Make it opt-in
Diffstat (limited to 'crates/hir_def/src/nameres/collector.rs')
-rw-r--r--crates/hir_def/src/nameres/collector.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/hir_def/src/nameres/collector.rs b/crates/hir_def/src/nameres/collector.rs
index 874a4ebb1..b2ce739bd 100644
--- a/crates/hir_def/src/nameres/collector.rs
+++ b/crates/hir_def/src/nameres/collector.rs
@@ -1067,6 +1067,10 @@ impl DefCollector<'_> {
1067 } 1067 }
1068 } 1068 }
1069 1069
1070 if !self.db.enable_proc_attr_macros() {
1071 return true;
1072 }
1073
1070 // Not resolved to a derive helper, so try to resolve as a macro. 1074 // Not resolved to a derive helper, so try to resolve as a macro.
1071 match attr_macro_as_call_id( 1075 match attr_macro_as_call_id(
1072 ast_id, 1076 ast_id,