Prefer to use print_def_path
This commit is contained in:
parent
ef3e386393
commit
6fdd53b7de
1 changed files with 2 additions and 2 deletions
|
@ -658,7 +658,7 @@ pub trait PrettyPrinter<'tcx>:
|
|||
let span = self.tcx().hir().span(hir_id);
|
||||
p!(write("@{}", self.tcx().sess.source_map().span_to_string(span)));
|
||||
} else {
|
||||
p!(write("@{}", self.tcx().def_path_str(did)));
|
||||
p!(write("@"), print_def_path(did, substs));
|
||||
}
|
||||
} else {
|
||||
p!(print_def_path(did, substs));
|
||||
|
@ -694,7 +694,7 @@ pub trait PrettyPrinter<'tcx>:
|
|||
p!(write("@{}", self.tcx().sess.source_map().span_to_string(span)));
|
||||
}
|
||||
} else {
|
||||
p!(write("@{}", self.tcx().def_path_str(did)));
|
||||
p!(write("@"), print_def_path(did, substs));
|
||||
}
|
||||
} else {
|
||||
p!(print_def_path(did, substs));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue