|
41 | 41 | //! in the HIR, especially for multiple identifiers.
|
42 | 42 |
|
43 | 43 | use hir;
|
44 |
| -use hir::map::{Definitions, DefKey, REGULAR_SPACE}; |
45 |
| -use hir::map::definitions::DefPathData; |
| 44 | +use hir::map::{Definitions, DefKey}; |
46 | 45 | use hir::def_id::{DefIndex, DefId, CRATE_DEF_INDEX};
|
47 | 46 | use hir::def::{Def, PathResolution};
|
48 | 47 | use lint::builtin::PARENTHESIZED_PARAMS_IN_TYPES_AND_MODULES;
|
@@ -1738,29 +1737,28 @@ impl<'a> LoweringContext<'a> {
|
1738 | 1737 | node: match p.node {
|
1739 | 1738 | PatKind::Wild => hir::PatKind::Wild,
|
1740 | 1739 | PatKind::Ident(ref binding_mode, pth1, ref sub) => {
|
1741 |
| - self.with_parent_def(p.id, |this| { |
1742 |
| - match this.resolver.get_resolution(p.id).map(|d| d.base_def()) { |
1743 |
| - // `None` can occur in body-less function signatures |
1744 |
| - def @ None | def @ Some(Def::Local(_)) => { |
1745 |
| - let def_id = def.map(|d| d.def_id()).unwrap_or_else(|| { |
1746 |
| - this.resolver.definitions().local_def_id(p.id) |
1747 |
| - }); |
1748 |
| - hir::PatKind::Binding(this.lower_binding_mode(binding_mode), |
1749 |
| - def_id, |
1750 |
| - respan(pth1.span, pth1.node.name), |
1751 |
| - sub.as_ref().map(|x| this.lower_pat(x))) |
1752 |
| - } |
1753 |
| - Some(def) => { |
1754 |
| - hir::PatKind::Path(hir::QPath::Resolved(None, P(hir::Path { |
1755 |
| - span: pth1.span, |
1756 |
| - def, |
1757 |
| - segments: hir_vec![ |
1758 |
| - hir::PathSegment::from_name(pth1.node.name) |
1759 |
| - ], |
1760 |
| - }))) |
1761 |
| - } |
| 1740 | + match self.resolver.get_resolution(p.id).map(|d| d.base_def()) { |
| 1741 | + // `None` can occur in body-less function signatures |
| 1742 | + def @ None | def @ Some(Def::Local(_)) => { |
| 1743 | + let canonical_id = match def { |
| 1744 | + Some(Def::Local(id)) => id, |
| 1745 | + _ => p.id |
| 1746 | + }; |
| 1747 | + hir::PatKind::Binding(self.lower_binding_mode(binding_mode), |
| 1748 | + canonical_id, |
| 1749 | + respan(pth1.span, pth1.node.name), |
| 1750 | + sub.as_ref().map(|x| self.lower_pat(x))) |
1762 | 1751 | }
|
1763 |
| - }) |
| 1752 | + Some(def) => { |
| 1753 | + hir::PatKind::Path(hir::QPath::Resolved(None, P(hir::Path { |
| 1754 | + span: pth1.span, |
| 1755 | + def, |
| 1756 | + segments: hir_vec![ |
| 1757 | + hir::PathSegment::from_name(pth1.node.name) |
| 1758 | + ], |
| 1759 | + }))) |
| 1760 | + } |
| 1761 | + } |
1764 | 1762 | }
|
1765 | 1763 | PatKind::Lit(ref e) => hir::PatKind::Lit(P(self.lower_expr(e))),
|
1766 | 1764 | PatKind::TupleStruct(ref path, ref pats, ddpos) => {
|
@@ -2715,14 +2713,9 @@ impl<'a> LoweringContext<'a> {
|
2715 | 2713 | id: Name,
|
2716 | 2714 | binding: NodeId,
|
2717 | 2715 | attrs: ThinVec<Attribute>) -> hir::Expr {
|
2718 |
| - let def = { |
2719 |
| - let defs = self.resolver.definitions(); |
2720 |
| - Def::Local(defs.local_def_id(binding)) |
2721 |
| - }; |
2722 |
| - |
2723 | 2716 | let expr_path = hir::ExprPath(hir::QPath::Resolved(None, P(hir::Path {
|
2724 | 2717 | span,
|
2725 |
| - def, |
| 2718 | + def: Def::Local(binding), |
2726 | 2719 | segments: hir_vec![hir::PathSegment::from_name(id)],
|
2727 | 2720 | })));
|
2728 | 2721 |
|
@@ -2860,23 +2853,12 @@ impl<'a> LoweringContext<'a> {
|
2860 | 2853 | fn pat_ident_binding_mode(&mut self, span: Span, name: Name, bm: hir::BindingAnnotation)
|
2861 | 2854 | -> P<hir::Pat> {
|
2862 | 2855 | let LoweredNodeId { node_id, hir_id } = self.next_id();
|
2863 |
| - let parent_def = self.parent_def.unwrap(); |
2864 |
| - let def_id = { |
2865 |
| - let defs = self.resolver.definitions(); |
2866 |
| - let def_path_data = DefPathData::Binding(name.as_str()); |
2867 |
| - let def_index = defs.create_def_with_parent(parent_def, |
2868 |
| - node_id, |
2869 |
| - def_path_data, |
2870 |
| - REGULAR_SPACE, |
2871 |
| - Mark::root()); |
2872 |
| - DefId::local(def_index) |
2873 |
| - }; |
2874 | 2856 |
|
2875 | 2857 | P(hir::Pat {
|
2876 | 2858 | id: node_id,
|
2877 | 2859 | hir_id,
|
2878 | 2860 | node: hir::PatKind::Binding(bm,
|
2879 |
| - def_id, |
| 2861 | + node_id, |
2880 | 2862 | Spanned {
|
2881 | 2863 | span,
|
2882 | 2864 | node: name,
|
|
0 commit comments