]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_hir/src/def.rs
Rollup merge of #96686 - JohnTitor:impl-trait-tests, r=oli-obk
[rust.git] / compiler / rustc_hir / src / def.rs
1 use crate::def_id::DefId;
2 use crate::hir;
3
4 use rustc_ast as ast;
5 use rustc_ast::NodeId;
6 use rustc_macros::HashStable_Generic;
7 use rustc_span::hygiene::MacroKind;
8 use rustc_span::Symbol;
9
10 use std::array::IntoIter;
11 use std::fmt::Debug;
12
13 /// Encodes if a `DefKind::Ctor` is the constructor of an enum variant or a struct.
14 #[derive(Clone, Copy, PartialEq, Eq, Encodable, Decodable, Hash, Debug)]
15 #[derive(HashStable_Generic)]
16 pub enum CtorOf {
17     /// This `DefKind::Ctor` is a synthesized constructor of a tuple or unit struct.
18     Struct,
19     /// This `DefKind::Ctor` is a synthesized constructor of a tuple or unit variant.
20     Variant,
21 }
22
23 /// What kind of constructor something is.
24 #[derive(Clone, Copy, PartialEq, Eq, Encodable, Decodable, Hash, Debug)]
25 #[derive(HashStable_Generic)]
26 pub enum CtorKind {
27     /// Constructor function automatically created by a tuple struct/variant.
28     Fn,
29     /// Constructor constant automatically created by a unit struct/variant.
30     Const,
31     /// Unusable name in value namespace created by a struct variant.
32     Fictive,
33 }
34
35 /// An attribute that is not a macro; e.g., `#[inline]` or `#[rustfmt::skip]`.
36 #[derive(Clone, Copy, PartialEq, Eq, Encodable, Decodable, Hash, Debug)]
37 #[derive(HashStable_Generic)]
38 pub enum NonMacroAttrKind {
39     /// Single-segment attribute defined by the language (`#[inline]`)
40     Builtin(Symbol),
41     /// Multi-segment custom attribute living in a "tool module" (`#[rustfmt::skip]`).
42     Tool,
43     /// Single-segment custom attribute registered by a derive macro (`#[serde(default)]`).
44     DeriveHelper,
45     /// Single-segment custom attribute registered by a derive macro
46     /// but used before that derive macro was expanded (deprecated).
47     DeriveHelperCompat,
48     /// Single-segment custom attribute registered with `#[register_attr]`.
49     Registered,
50 }
51
52 /// What kind of definition something is; e.g., `mod` vs `struct`.
53 #[derive(Clone, Copy, PartialEq, Eq, Encodable, Decodable, Hash, Debug)]
54 #[derive(HashStable_Generic)]
55 pub enum DefKind {
56     // Type namespace
57     Mod,
58     /// Refers to the struct itself, [`DefKind::Ctor`] refers to its constructor if it exists.
59     Struct,
60     Union,
61     Enum,
62     /// Refers to the variant itself, [`DefKind::Ctor`] refers to its constructor if it exists.
63     Variant,
64     Trait,
65     /// Type alias: `type Foo = Bar;`
66     TyAlias,
67     /// Type from an `extern` block.
68     ForeignTy,
69     /// Trait alias: `trait IntIterator = Iterator<Item = i32>;`
70     TraitAlias,
71     /// Associated type: `trait MyTrait { type Assoc; }`
72     AssocTy,
73     /// Type parameter: the `T` in `struct Vec<T> { ... }`
74     TyParam,
75
76     // Value namespace
77     Fn,
78     Const,
79     /// Constant generic parameter: `struct Foo<const N: usize> { ... }`
80     ConstParam,
81     Static(ast::Mutability),
82     /// Refers to the struct or enum variant's constructor.
83     ///
84     /// The reason `Ctor` exists in addition to [`DefKind::Struct`] and
85     /// [`DefKind::Variant`] is because structs and enum variants exist
86     /// in the *type* namespace, whereas struct and enum variant *constructors*
87     /// exist in the *value* namespace.
88     ///
89     /// You may wonder why enum variants exist in the type namespace as opposed
90     /// to the value namespace. Check out [RFC 2593] for intuition on why that is.
91     ///
92     /// [RFC 2593]: https://github.com/rust-lang/rfcs/pull/2593
93     Ctor(CtorOf, CtorKind),
94     /// Associated function: `impl MyStruct { fn associated() {} }`
95     AssocFn,
96     /// Associated constant: `trait MyTrait { const ASSOC: usize; }`
97     AssocConst,
98
99     // Macro namespace
100     Macro(MacroKind),
101
102     // Not namespaced (or they are, but we don't treat them so)
103     ExternCrate,
104     Use,
105     /// An `extern` block.
106     ForeignMod,
107     /// Anonymous constant, e.g. the `1 + 2` in `[u8; 1 + 2]`
108     AnonConst,
109     /// An inline constant, e.g. `const { 1 + 2 }`
110     InlineConst,
111     /// Opaque type, aka `impl Trait`.
112     OpaqueTy,
113     Field,
114     /// Lifetime parameter: the `'a` in `struct Foo<'a> { ... }`
115     LifetimeParam,
116     /// A use of `global_asm!`.
117     GlobalAsm,
118     Impl,
119     Closure,
120     Generator,
121 }
122
123 impl DefKind {
124     pub fn descr(self, def_id: DefId) -> &'static str {
125         match self {
126             DefKind::Fn => "function",
127             DefKind::Mod if def_id.is_crate_root() && !def_id.is_local() => "crate",
128             DefKind::Mod => "module",
129             DefKind::Static(..) => "static",
130             DefKind::Enum => "enum",
131             DefKind::Variant => "variant",
132             DefKind::Ctor(CtorOf::Variant, CtorKind::Fn) => "tuple variant",
133             DefKind::Ctor(CtorOf::Variant, CtorKind::Const) => "unit variant",
134             DefKind::Ctor(CtorOf::Variant, CtorKind::Fictive) => "struct variant",
135             DefKind::Struct => "struct",
136             DefKind::Ctor(CtorOf::Struct, CtorKind::Fn) => "tuple struct",
137             DefKind::Ctor(CtorOf::Struct, CtorKind::Const) => "unit struct",
138             DefKind::Ctor(CtorOf::Struct, CtorKind::Fictive) => {
139                 panic!("impossible struct constructor")
140             }
141             DefKind::OpaqueTy => "opaque type",
142             DefKind::TyAlias => "type alias",
143             DefKind::TraitAlias => "trait alias",
144             DefKind::AssocTy => "associated type",
145             DefKind::Union => "union",
146             DefKind::Trait => "trait",
147             DefKind::ForeignTy => "foreign type",
148             DefKind::AssocFn => "associated function",
149             DefKind::Const => "constant",
150             DefKind::AssocConst => "associated constant",
151             DefKind::TyParam => "type parameter",
152             DefKind::ConstParam => "const parameter",
153             DefKind::Macro(macro_kind) => macro_kind.descr(),
154             DefKind::LifetimeParam => "lifetime parameter",
155             DefKind::Use => "import",
156             DefKind::ForeignMod => "foreign module",
157             DefKind::AnonConst => "constant expression",
158             DefKind::InlineConst => "inline constant",
159             DefKind::Field => "field",
160             DefKind::Impl => "implementation",
161             DefKind::Closure => "closure",
162             DefKind::Generator => "generator",
163             DefKind::ExternCrate => "extern crate",
164             DefKind::GlobalAsm => "global assembly block",
165         }
166     }
167
168     /// Gets an English article for the definition.
169     pub fn article(&self) -> &'static str {
170         match *self {
171             DefKind::AssocTy
172             | DefKind::AssocConst
173             | DefKind::AssocFn
174             | DefKind::Enum
175             | DefKind::OpaqueTy
176             | DefKind::Impl
177             | DefKind::Use
178             | DefKind::InlineConst
179             | DefKind::ExternCrate => "an",
180             DefKind::Macro(macro_kind) => macro_kind.article(),
181             _ => "a",
182         }
183     }
184
185     pub fn ns(&self) -> Option<Namespace> {
186         match self {
187             DefKind::Mod
188             | DefKind::Struct
189             | DefKind::Union
190             | DefKind::Enum
191             | DefKind::Variant
192             | DefKind::Trait
193             | DefKind::OpaqueTy
194             | DefKind::TyAlias
195             | DefKind::ForeignTy
196             | DefKind::TraitAlias
197             | DefKind::AssocTy
198             | DefKind::TyParam => Some(Namespace::TypeNS),
199
200             DefKind::Fn
201             | DefKind::Const
202             | DefKind::ConstParam
203             | DefKind::Static(..)
204             | DefKind::Ctor(..)
205             | DefKind::AssocFn
206             | DefKind::AssocConst => Some(Namespace::ValueNS),
207
208             DefKind::Macro(..) => Some(Namespace::MacroNS),
209
210             // Not namespaced.
211             DefKind::AnonConst
212             | DefKind::InlineConst
213             | DefKind::Field
214             | DefKind::LifetimeParam
215             | DefKind::ExternCrate
216             | DefKind::Closure
217             | DefKind::Generator
218             | DefKind::Use
219             | DefKind::ForeignMod
220             | DefKind::GlobalAsm
221             | DefKind::Impl => None,
222         }
223     }
224
225     #[inline]
226     pub fn is_fn_like(self) -> bool {
227         match self {
228             DefKind::Fn | DefKind::AssocFn | DefKind::Closure | DefKind::Generator => true,
229             _ => false,
230         }
231     }
232 }
233
234 /// The resolution of a path or export.
235 ///
236 /// For every path or identifier in Rust, the compiler must determine
237 /// what the path refers to. This process is called name resolution,
238 /// and `Res` is the primary result of name resolution.
239 ///
240 /// For example, everything prefixed with `/* Res */` in this example has
241 /// an associated `Res`:
242 ///
243 /// ```
244 /// fn str_to_string(s: & /* Res */ str) -> /* Res */ String {
245 ///     /* Res */ String::from(/* Res */ s)
246 /// }
247 ///
248 /// /* Res */ str_to_string("hello");
249 /// ```
250 ///
251 /// The associated `Res`s will be:
252 ///
253 /// - `str` will resolve to [`Res::PrimTy`];
254 /// - `String` will resolve to [`Res::Def`], and the `Res` will include the [`DefId`]
255 ///   for `String` as defined in the standard library;
256 /// - `String::from` will also resolve to [`Res::Def`], with the [`DefId`]
257 ///   pointing to `String::from`;
258 /// - `s` will resolve to [`Res::Local`];
259 /// - the call to `str_to_string` will resolve to [`Res::Def`], with the [`DefId`]
260 ///   pointing to the definition of `str_to_string` in the current crate.
261 //
262 #[derive(Clone, Copy, PartialEq, Eq, Encodable, Decodable, Hash, Debug)]
263 #[derive(HashStable_Generic)]
264 pub enum Res<Id = hir::HirId> {
265     /// Definition having a unique ID (`DefId`), corresponds to something defined in user code.
266     ///
267     /// **Not bound to a specific namespace.**
268     Def(DefKind, DefId),
269
270     // Type namespace
271     /// A primitive type such as `i32` or `str`.
272     ///
273     /// **Belongs to the type namespace.**
274     PrimTy(hir::PrimTy),
275     /// The `Self` type, optionally with the [`DefId`] of the trait it belongs to and
276     /// optionally with the [`DefId`] of the item introducing the `Self` type alias.
277     ///
278     /// **Belongs to the type namespace.**
279     ///
280     /// Examples:
281     /// ```
282     /// struct Bar(Box<Self>);
283     /// // `Res::SelfTy { trait_: None, alias_of: Some(Bar) }`
284     ///
285     /// trait Foo {
286     ///     fn foo() -> Box<Self>;
287     ///     // `Res::SelfTy { trait_: Some(Foo), alias_of: None }`
288     /// }
289     ///
290     /// impl Bar {
291     ///     fn blah() {
292     ///         let _: Self;
293     ///         // `Res::SelfTy { trait_: None, alias_of: Some(::{impl#0}) }`
294     ///     }
295     /// }
296     ///
297     /// impl Foo for Bar {
298     ///     fn foo() -> Box<Self> {
299     ///     // `Res::SelfTy { trait_: Some(Foo), alias_of: Some(::{impl#1}) }`
300     ///         let _: Self;
301     ///         // `Res::SelfTy { trait_: Some(Foo), alias_of: Some(::{impl#1}) }`
302     ///
303     ///         todo!()
304     ///     }
305     /// }
306     /// ```
307     ///
308     /// *See also [`Res::SelfCtor`].*
309     ///
310     /// -----
311     ///
312     /// HACK(min_const_generics): self types also have an optional requirement to **not** mention
313     /// any generic parameters to allow the following with `min_const_generics`:
314     /// ```
315     /// impl Foo { fn test() -> [u8; std::mem::size_of::<Self>()] { todo!() } }
316     ///
317     /// struct Bar([u8; baz::<Self>()]);
318     /// const fn baz<T>() -> usize { 10 }
319     /// ```
320     /// We do however allow `Self` in repeat expression even if it is generic to not break code
321     /// which already works on stable while causing the `const_evaluatable_unchecked` future compat lint:
322     /// ```
323     /// fn foo<T>() {
324     ///     let _bar = [1_u8; std::mem::size_of::<*mut T>()];
325     /// }
326     /// ```
327     // FIXME(generic_const_exprs): Remove this bodge once that feature is stable.
328     SelfTy {
329         /// The trait this `Self` is a generic arg for.
330         trait_: Option<DefId>,
331         /// The item introducing the `Self` type alias. Can be used in the `type_of` query
332         /// to get the underlying type. Additionally whether the `Self` type is disallowed
333         /// from mentioning generics (i.e. when used in an anonymous constant).
334         alias_to: Option<(DefId, bool)>,
335     },
336     /// A tool attribute module; e.g., the `rustfmt` in `#[rustfmt::skip]`.
337     ///
338     /// **Belongs to the type namespace.**
339     ToolMod,
340
341     // Value namespace
342     /// The `Self` constructor, along with the [`DefId`]
343     /// of the impl it is associated with.
344     ///
345     /// **Belongs to the value namespace.**
346     ///
347     /// *See also [`Res::SelfTy`].*
348     SelfCtor(DefId),
349     /// A local variable or function parameter.
350     ///
351     /// **Belongs to the value namespace.**
352     Local(Id),
353
354     // Macro namespace
355     /// An attribute that is *not* implemented via macro.
356     /// E.g., `#[inline]` and `#[rustfmt::skip]`, which are essentially directives,
357     /// as opposed to `#[test]`, which is a builtin macro.
358     ///
359     /// **Belongs to the macro namespace.**
360     NonMacroAttr(NonMacroAttrKind), // e.g., `#[inline]` or `#[rustfmt::skip]`
361
362     // All namespaces
363     /// Name resolution failed. We use a dummy `Res` variant so later phases
364     /// of the compiler won't crash and can instead report more errors.
365     ///
366     /// **Not bound to a specific namespace.**
367     Err,
368 }
369
370 /// The result of resolving a path before lowering to HIR,
371 /// with "module" segments resolved and associated item
372 /// segments deferred to type checking.
373 /// `base_res` is the resolution of the resolved part of the
374 /// path, `unresolved_segments` is the number of unresolved
375 /// segments.
376 ///
377 /// ```text
378 /// module::Type::AssocX::AssocY::MethodOrAssocType
379 /// ^~~~~~~~~~~~  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
380 /// base_res      unresolved_segments = 3
381 ///
382 /// <T as Trait>::AssocX::AssocY::MethodOrAssocType
383 ///       ^~~~~~~~~~~~~~  ^~~~~~~~~~~~~~~~~~~~~~~~~
384 ///       base_res        unresolved_segments = 2
385 /// ```
386 #[derive(Copy, Clone, Debug)]
387 pub struct PartialRes {
388     base_res: Res<NodeId>,
389     unresolved_segments: usize,
390 }
391
392 impl PartialRes {
393     #[inline]
394     pub fn new(base_res: Res<NodeId>) -> Self {
395         PartialRes { base_res, unresolved_segments: 0 }
396     }
397
398     #[inline]
399     pub fn with_unresolved_segments(base_res: Res<NodeId>, mut unresolved_segments: usize) -> Self {
400         if base_res == Res::Err {
401             unresolved_segments = 0
402         }
403         PartialRes { base_res, unresolved_segments }
404     }
405
406     #[inline]
407     pub fn base_res(&self) -> Res<NodeId> {
408         self.base_res
409     }
410
411     #[inline]
412     pub fn unresolved_segments(&self) -> usize {
413         self.unresolved_segments
414     }
415 }
416
417 /// Different kinds of symbols can coexist even if they share the same textual name.
418 /// Therefore, they each have a separate universe (known as a "namespace").
419 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
420 pub enum Namespace {
421     /// The type namespace includes `struct`s, `enum`s, `union`s, `trait`s, and `mod`s
422     /// (and, by extension, crates).
423     ///
424     /// Note that the type namespace includes other items; this is not an
425     /// exhaustive list.
426     TypeNS,
427     /// The value namespace includes `fn`s, `const`s, `static`s, and local variables (including function arguments).
428     ValueNS,
429     /// The macro namespace includes `macro_rules!` macros, declarative `macro`s,
430     /// procedural macros, attribute macros, `derive` macros, and non-macro attributes
431     /// like `#[inline]` and `#[rustfmt::skip]`.
432     MacroNS,
433 }
434
435 impl Namespace {
436     /// The English description of the namespace.
437     pub fn descr(self) -> &'static str {
438         match self {
439             Self::TypeNS => "type",
440             Self::ValueNS => "value",
441             Self::MacroNS => "macro",
442         }
443     }
444 }
445
446 /// Just a helper ‒ separate structure for each namespace.
447 #[derive(Copy, Clone, Default, Debug)]
448 pub struct PerNS<T> {
449     pub value_ns: T,
450     pub type_ns: T,
451     pub macro_ns: T,
452 }
453
454 impl<T> PerNS<T> {
455     pub fn map<U, F: FnMut(T) -> U>(self, mut f: F) -> PerNS<U> {
456         PerNS { value_ns: f(self.value_ns), type_ns: f(self.type_ns), macro_ns: f(self.macro_ns) }
457     }
458
459     pub fn into_iter(self) -> IntoIter<T, 3> {
460         [self.value_ns, self.type_ns, self.macro_ns].into_iter()
461     }
462
463     pub fn iter(&self) -> IntoIter<&T, 3> {
464         [&self.value_ns, &self.type_ns, &self.macro_ns].into_iter()
465     }
466 }
467
468 impl<T> ::std::ops::Index<Namespace> for PerNS<T> {
469     type Output = T;
470
471     fn index(&self, ns: Namespace) -> &T {
472         match ns {
473             Namespace::ValueNS => &self.value_ns,
474             Namespace::TypeNS => &self.type_ns,
475             Namespace::MacroNS => &self.macro_ns,
476         }
477     }
478 }
479
480 impl<T> ::std::ops::IndexMut<Namespace> for PerNS<T> {
481     fn index_mut(&mut self, ns: Namespace) -> &mut T {
482         match ns {
483             Namespace::ValueNS => &mut self.value_ns,
484             Namespace::TypeNS => &mut self.type_ns,
485             Namespace::MacroNS => &mut self.macro_ns,
486         }
487     }
488 }
489
490 impl<T> PerNS<Option<T>> {
491     /// Returns `true` if all the items in this collection are `None`.
492     pub fn is_empty(&self) -> bool {
493         self.type_ns.is_none() && self.value_ns.is_none() && self.macro_ns.is_none()
494     }
495
496     /// Returns an iterator over the items which are `Some`.
497     pub fn present_items(self) -> impl Iterator<Item = T> {
498         [self.type_ns, self.value_ns, self.macro_ns].into_iter().flatten()
499     }
500 }
501
502 impl CtorKind {
503     pub fn from_ast(vdata: &ast::VariantData) -> CtorKind {
504         match *vdata {
505             ast::VariantData::Tuple(..) => CtorKind::Fn,
506             ast::VariantData::Unit(..) => CtorKind::Const,
507             ast::VariantData::Struct(..) => CtorKind::Fictive,
508         }
509     }
510
511     pub fn from_hir(vdata: &hir::VariantData<'_>) -> CtorKind {
512         match *vdata {
513             hir::VariantData::Tuple(..) => CtorKind::Fn,
514             hir::VariantData::Unit(..) => CtorKind::Const,
515             hir::VariantData::Struct(..) => CtorKind::Fictive,
516         }
517     }
518 }
519
520 impl NonMacroAttrKind {
521     pub fn descr(self) -> &'static str {
522         match self {
523             NonMacroAttrKind::Builtin(..) => "built-in attribute",
524             NonMacroAttrKind::Tool => "tool attribute",
525             NonMacroAttrKind::DeriveHelper | NonMacroAttrKind::DeriveHelperCompat => {
526                 "derive helper attribute"
527             }
528             NonMacroAttrKind::Registered => "explicitly registered attribute",
529         }
530     }
531
532     pub fn article(self) -> &'static str {
533         match self {
534             NonMacroAttrKind::Registered => "an",
535             _ => "a",
536         }
537     }
538
539     /// Users of some attributes cannot mark them as used, so they are considered always used.
540     pub fn is_used(self) -> bool {
541         match self {
542             NonMacroAttrKind::Tool
543             | NonMacroAttrKind::DeriveHelper
544             | NonMacroAttrKind::DeriveHelperCompat => true,
545             NonMacroAttrKind::Builtin(..) | NonMacroAttrKind::Registered => false,
546         }
547     }
548 }
549
550 impl<Id> Res<Id> {
551     /// Return the `DefId` of this `Def` if it has an ID, else panic.
552     pub fn def_id(&self) -> DefId
553     where
554         Id: Debug,
555     {
556         self.opt_def_id()
557             .unwrap_or_else(|| panic!("attempted .def_id() on invalid res: {:?}", self))
558     }
559
560     /// Return `Some(..)` with the `DefId` of this `Res` if it has a ID, else `None`.
561     pub fn opt_def_id(&self) -> Option<DefId> {
562         match *self {
563             Res::Def(_, id) => Some(id),
564
565             Res::Local(..)
566             | Res::PrimTy(..)
567             | Res::SelfTy { .. }
568             | Res::SelfCtor(..)
569             | Res::ToolMod
570             | Res::NonMacroAttr(..)
571             | Res::Err => None,
572         }
573     }
574
575     /// Return the `DefId` of this `Res` if it represents a module.
576     pub fn mod_def_id(&self) -> Option<DefId> {
577         match *self {
578             Res::Def(DefKind::Mod, id) => Some(id),
579             _ => None,
580         }
581     }
582
583     /// A human readable name for the res kind ("function", "module", etc.).
584     pub fn descr(&self) -> &'static str {
585         match *self {
586             Res::Def(kind, def_id) => kind.descr(def_id),
587             Res::SelfCtor(..) => "self constructor",
588             Res::PrimTy(..) => "builtin type",
589             Res::Local(..) => "local variable",
590             Res::SelfTy { .. } => "self type",
591             Res::ToolMod => "tool module",
592             Res::NonMacroAttr(attr_kind) => attr_kind.descr(),
593             Res::Err => "unresolved item",
594         }
595     }
596
597     /// Gets an English article for the `Res`.
598     pub fn article(&self) -> &'static str {
599         match *self {
600             Res::Def(kind, _) => kind.article(),
601             Res::NonMacroAttr(kind) => kind.article(),
602             Res::Err => "an",
603             _ => "a",
604         }
605     }
606
607     pub fn map_id<R>(self, mut map: impl FnMut(Id) -> R) -> Res<R> {
608         match self {
609             Res::Def(kind, id) => Res::Def(kind, id),
610             Res::SelfCtor(id) => Res::SelfCtor(id),
611             Res::PrimTy(id) => Res::PrimTy(id),
612             Res::Local(id) => Res::Local(map(id)),
613             Res::SelfTy { trait_, alias_to } => Res::SelfTy { trait_, alias_to },
614             Res::ToolMod => Res::ToolMod,
615             Res::NonMacroAttr(attr_kind) => Res::NonMacroAttr(attr_kind),
616             Res::Err => Res::Err,
617         }
618     }
619
620     pub fn apply_id<R, E>(self, mut map: impl FnMut(Id) -> Result<R, E>) -> Result<Res<R>, E> {
621         Ok(match self {
622             Res::Def(kind, id) => Res::Def(kind, id),
623             Res::SelfCtor(id) => Res::SelfCtor(id),
624             Res::PrimTy(id) => Res::PrimTy(id),
625             Res::Local(id) => Res::Local(map(id)?),
626             Res::SelfTy { trait_, alias_to } => Res::SelfTy { trait_, alias_to },
627             Res::ToolMod => Res::ToolMod,
628             Res::NonMacroAttr(attr_kind) => Res::NonMacroAttr(attr_kind),
629             Res::Err => Res::Err,
630         })
631     }
632
633     #[track_caller]
634     pub fn expect_non_local<OtherId>(self) -> Res<OtherId> {
635         self.map_id(|_| panic!("unexpected `Res::Local`"))
636     }
637
638     pub fn macro_kind(self) -> Option<MacroKind> {
639         match self {
640             Res::Def(DefKind::Macro(kind), _) => Some(kind),
641             Res::NonMacroAttr(..) => Some(MacroKind::Attr),
642             _ => None,
643         }
644     }
645
646     /// Returns `None` if this is `Res::Err`
647     pub fn ns(&self) -> Option<Namespace> {
648         match self {
649             Res::Def(kind, ..) => kind.ns(),
650             Res::PrimTy(..) | Res::SelfTy { .. } | Res::ToolMod => Some(Namespace::TypeNS),
651             Res::SelfCtor(..) | Res::Local(..) => Some(Namespace::ValueNS),
652             Res::NonMacroAttr(..) => Some(Namespace::MacroNS),
653             Res::Err => None,
654         }
655     }
656
657     /// Always returns `true` if `self` is `Res::Err`
658     pub fn matches_ns(&self, ns: Namespace) -> bool {
659         self.ns().map_or(true, |actual_ns| actual_ns == ns)
660     }
661
662     /// Returns whether such a resolved path can occur in a tuple struct/variant pattern
663     pub fn expected_in_tuple_struct_pat(&self) -> bool {
664         matches!(self, Res::Def(DefKind::Ctor(_, CtorKind::Fn), _) | Res::SelfCtor(..))
665     }
666
667     /// Returns whether such a resolved path can occur in a unit struct/variant pattern
668     pub fn expected_in_unit_struct_pat(&self) -> bool {
669         matches!(self, Res::Def(DefKind::Ctor(_, CtorKind::Const), _) | Res::SelfCtor(..))
670     }
671 }