Rename DefPathData::get_name() to DefPathData::name()

This commit is contained in:
marmeladema 2020-09-01 00:42:30 +01:00
parent 2708ad8bb4
commit 657ecdb75e
7 changed files with 7 additions and 7 deletions

View file

@ -232,7 +232,7 @@ pub fn push_debuginfo_type_name<'tcx>(
output.push_str(&tcx.crate_name(def_id.krate).as_str());
for path_element in tcx.def_path(def_id).data {
output.push_str("::");
match path_element.data.get_name() {
match path_element.data.name() {
DefPathDataName::Named(name) => output.push_str(&name.as_str()),
DefPathDataName::Anon { namespace } => {
write!(output, "{{{{{}}}}}", namespace).unwrap()