@@ -10,7 +10,7 @@ use cfg::{CfgExpr, CfgOptions};
10
10
use either:: Either ;
11
11
use hir_expand:: {
12
12
attrs:: { Attr , AttrId } ,
13
- builtin_attr_macro:: { find_builtin_attr, BuiltinAttrExpander } ,
13
+ builtin_attr_macro:: find_builtin_attr,
14
14
builtin_derive_macro:: find_builtin_derive,
15
15
builtin_fn_macro:: find_builtin_macro,
16
16
name:: { name, AsName , Name } ,
@@ -270,6 +270,7 @@ struct DefCollector<'a> {
270
270
///
271
271
/// This also stores the attributes to skip when we resolve derive helpers and non-macro
272
272
/// non-builtin attributes in general.
273
+ // FIXME: There has to be a better way to do this
273
274
skip_attrs : FxHashMap < InFile < ModItem > , AttrId > ,
274
275
}
275
276
@@ -1255,17 +1256,23 @@ impl DefCollector<'_> {
1255
1256
_ => return Resolved :: No ,
1256
1257
} ;
1257
1258
1258
- let call_id =
1259
- attr_macro_as_call_id ( self . db , file_ast_id, attr, self . def_map . krate , def) ;
1260
- if let MacroDefId {
1261
- kind :
1262
- MacroDefKind :: BuiltInAttr (
1263
- BuiltinAttrExpander :: Derive | BuiltinAttrExpander :: DeriveConst ,
1264
- _,
1265
- ) ,
1266
- ..
1267
- } = def
1268
- {
1259
+ // Skip #[test]/#[bench] expansion, which would merely result in more memory usage
1260
+ // due to duplicating functions into macro expansions
1261
+ if matches ! (
1262
+ def. kind,
1263
+ MacroDefKind :: BuiltInAttr ( _, expander)
1264
+ if expander. is_test( ) || expander. is_bench( )
1265
+ ) {
1266
+ return recollect_without ( self ) ;
1267
+ }
1268
+
1269
+ let call_id = || {
1270
+ attr_macro_as_call_id ( self . db , file_ast_id, attr, self . def_map . krate , def)
1271
+ } ;
1272
+ if matches ! ( def,
1273
+ MacroDefId { kind: MacroDefKind :: BuiltInAttr ( _, exp) , .. }
1274
+ if exp. is_derive( )
1275
+ ) {
1269
1276
// Resolved to `#[derive]`, we don't actually expand this attribute like
1270
1277
// normal (as that would just be an identity expansion with extra output)
1271
1278
// Instead we treat derive attributes special and apply them separately.
@@ -1290,6 +1297,7 @@ impl DefCollector<'_> {
1290
1297
1291
1298
match attr. parse_path_comma_token_tree ( self . db . upcast ( ) ) {
1292
1299
Some ( derive_macros) => {
1300
+ let call_id = call_id ( ) ;
1293
1301
let mut len = 0 ;
1294
1302
for ( idx, ( path, call_site) ) in derive_macros. enumerate ( ) {
1295
1303
let ast_id = AstIdWithPath :: new ( file_id, ast_id. value , path) ;
@@ -1312,13 +1320,6 @@ impl DefCollector<'_> {
1312
1320
// This is just a trick to be able to resolve the input to derives
1313
1321
// as proper paths in `Semantics`.
1314
1322
// Check the comment in [`builtin_attr_macro`].
1315
- let call_id = attr_macro_as_call_id (
1316
- self . db ,
1317
- file_ast_id,
1318
- attr,
1319
- self . def_map . krate ,
1320
- def,
1321
- ) ;
1322
1323
self . def_map . modules [ directive. module_id ]
1323
1324
. scope
1324
1325
. init_derive_attribute ( ast_id, attr. id , call_id, len + 1 ) ;
@@ -1336,17 +1337,8 @@ impl DefCollector<'_> {
1336
1337
return recollect_without ( self ) ;
1337
1338
}
1338
1339
1339
- // Skip #[test]/#[bench] expansion, which would merely result in more memory usage
1340
- // due to duplicating functions into macro expansions
1341
- if matches ! (
1342
- def. kind,
1343
- MacroDefKind :: BuiltInAttr ( expander, _)
1344
- if expander. is_test( ) || expander. is_bench( )
1345
- ) {
1346
- return recollect_without ( self ) ;
1347
- }
1348
-
1349
- if let MacroDefKind :: ProcMacro ( exp, ..) = def. kind {
1340
+ let call_id = call_id ( ) ;
1341
+ if let MacroDefKind :: ProcMacro ( _, exp, _) = def. kind {
1350
1342
// If proc attribute macro expansion is disabled, skip expanding it here
1351
1343
if !self . db . expand_proc_attr_macros ( ) {
1352
1344
self . def_map . diagnostics . push ( DefDiagnostic :: unresolved_proc_macro (
0 commit comments