@@ -231,8 +231,7 @@ impl<'hir> Map<'hir> {
231
231
}
232
232
233
233
pub fn opt_def_kind ( & self , local_def_id : LocalDefId ) -> Option < DefKind > {
234
- let hir_id = self . local_def_id_to_hir_id ( local_def_id) ;
235
- let def_kind = match self . find ( hir_id) ? {
234
+ let def_kind = match self . find_by_def_id ( local_def_id) ? {
236
235
Node :: Item ( item) => match item. kind {
237
236
ItemKind :: Static ( ..) => DefKind :: Static ,
238
237
ItemKind :: Const ( ..) => DefKind :: Const ,
@@ -272,6 +271,7 @@ impl<'hir> Map<'hir> {
272
271
// FIXME(eddyb) is this even possible, if we have a `Node::Ctor`?
273
272
assert_ne ! ( variant_data. ctor_hir_id( ) , None ) ;
274
273
274
+ let hir_id = self . local_def_id_to_hir_id ( local_def_id) ;
275
275
let ctor_of = match self . find ( self . get_parent_node ( hir_id) ) {
276
276
Some ( Node :: Item ( ..) ) => def:: CtorOf :: Struct ,
277
277
Some ( Node :: Variant ( ..) ) => def:: CtorOf :: Variant ,
@@ -280,6 +280,7 @@ impl<'hir> Map<'hir> {
280
280
DefKind :: Ctor ( ctor_of, def:: CtorKind :: from_hir ( variant_data) )
281
281
}
282
282
Node :: AnonConst ( _) => {
283
+ let hir_id = self . local_def_id_to_hir_id ( local_def_id) ;
283
284
let inline = match self . find ( self . get_parent_node ( hir_id) ) {
284
285
Some ( Node :: Expr ( & Expr {
285
286
kind : ExprKind :: ConstBlock ( ref anon_const) , ..
@@ -292,7 +293,10 @@ impl<'hir> Map<'hir> {
292
293
Node :: Expr ( expr) => match expr. kind {
293
294
ExprKind :: Closure ( .., None ) => DefKind :: Closure ,
294
295
ExprKind :: Closure ( .., Some ( _) ) => DefKind :: Generator ,
295
- _ => bug ! ( "def_kind: unsupported node: {}" , self . node_to_string( hir_id) ) ,
296
+ _ => {
297
+ let hir_id = self . local_def_id_to_hir_id ( local_def_id) ;
298
+ bug ! ( "def_kind: unsupported node: {}" , self . node_to_string( hir_id) )
299
+ }
296
300
} ,
297
301
Node :: GenericParam ( param) => match param. kind {
298
302
GenericParamKind :: Lifetime { .. } => DefKind :: LifetimeParam ,
@@ -352,7 +356,12 @@ impl<'hir> Map<'hir> {
352
356
/// Retrieves the `Node` corresponding to `id`, returning `None` if cannot be found.
353
357
#[ inline]
354
358
pub fn find_by_def_id ( & self , id : LocalDefId ) -> Option < Node < ' hir > > {
355
- self . find ( self . local_def_id_to_hir_id ( id) )
359
+ let owner = self . tcx . hir_owner ( id) ;
360
+ match owner {
361
+ MaybeOwner :: Owner ( o) => Some ( o. node . into ( ) ) ,
362
+ MaybeOwner :: NonOwner ( hir_id) => self . find ( hir_id) ,
363
+ MaybeOwner :: Phantom => bug ! ( "No HirId for {:?}" , id) ,
364
+ }
356
365
}
357
366
358
367
/// Retrieves the `Node` corresponding to `id`, panicking if it cannot be found.
@@ -367,7 +376,7 @@ impl<'hir> Map<'hir> {
367
376
}
368
377
369
378
pub fn get_if_local ( & self , id : DefId ) -> Option < Node < ' hir > > {
370
- id. as_local ( ) . and_then ( |id| self . find ( self . local_def_id_to_hir_id ( id ) ) )
379
+ id. as_local ( ) . and_then ( |id| self . find_by_def_id ( id ) )
371
380
}
372
381
373
382
pub fn get_generics ( & self , id : LocalDefId ) -> Option < & ' hir Generics < ' hir > > {
0 commit comments