Skip to content

Commit edec838

Browse files
authored
Rollup merge of rust-lang#57474 - emilio:save-analysis-path, r=nrc
save-analysis: Get path def from parent in case there's no def for the path itself. This fixes rust-lang#57462. The relevant part from the hir type collector is: ``` DEBUG 2019-01-09T15:42:58Z: rustc::hir::map::collector: hir_map: NodeId(32) => Entry { parent: NodeId(33), dep_node: 4294967040, node: Expr(expr(32: <Foo>::new)) } DEBUG 2019-01-09T15:42:58Z: rustc::hir::map::collector: hir_map: NodeId(48) => Entry { parent: NodeId(32), dep_node: 4294967040, node: Ty(type(Foo)) } DEBUG 2019-01-09T15:42:58Z: rustc::hir::map::collector: hir_map: NodeId(30) => Entry { parent: NodeId(48), dep_node: 4294967040, node: PathSegment(PathSegment { ident: Foo#0, id: Some(NodeId(30)), def: Some(Err), args: None, infer_types: true }) } DEBUG 2019-01-09T15:42:58Z: rustc::hir::map::collector: hir_map: NodeId(31) => Entry { parent: NodeId(32), dep_node: 4294967040, node: PathSegment(PathSegment { ident: new#0, id: Some(NodeId(31)), def: Some(Err), args: None, infer_types: true }) } ``` We have the right ID when looking for NodeId(31) and try with NodeId(32) (which is the right thing to look for) from get_path_data. But not when we look from `write_sub_paths_truncated` Basically process_path takes an id which is always the parent, and that we fall back to in get_path_data(), so we get the right result for the last path segment, but not for the other segments that get written to from write_sub_paths_truncated. I think we can stop passing the explicit `id` around to get_path_data as a followup.
2 parents b3290fd + c47ed14 commit edec838

File tree

1 file changed

+5
-3
lines changed
  • src/librustc_save_analysis

1 file changed

+5
-3
lines changed

src/librustc_save_analysis/lib.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -625,9 +625,11 @@ impl<'l, 'tcx: 'l> SaveContext<'l, 'tcx> {
625625
Node::Visibility(&Spanned {
626626
node: hir::VisibilityKind::Restricted { ref path, .. }, .. }) => path.def,
627627

628-
Node::PathSegment(seg) => match seg.def {
629-
Some(def) => def,
630-
None => HirDef::Err,
628+
Node::PathSegment(seg) => {
629+
match seg.def {
630+
Some(def) if def != HirDef::Err => def,
631+
_ => self.get_path_def(self.tcx.hir().get_parent_node(id)),
632+
}
631633
},
632634
Node::Expr(&hir::Expr {
633635
node: hir::ExprKind::Struct(ref qpath, ..),

0 commit comments

Comments
 (0)