Unify naming

This commit is contained in:
Aleksey Kladov 2020-09-03 12:18:46 +02:00
parent 5328792fea
commit 75b1f9ee23
2 changed files with 5 additions and 5 deletions

View File

@ -166,7 +166,7 @@ impl<'a> QualifyPaths<'a> {
.map(|arg_list| apply(self, arg_list)); .map(|arg_list| apply(self, arg_list));
if let Some(type_args) = type_args { if let Some(type_args) = type_args {
let last_segment = path.segment().unwrap(); let last_segment = path.segment().unwrap();
path = path.with_segment(last_segment.with_type_args(type_args)) path = path.with_segment(last_segment.with_generic_args(type_args))
} }
Some(path.syntax().clone()) Some(path.syntax().clone())

View File

@ -260,16 +260,16 @@ impl ast::Path {
impl ast::PathSegment { impl ast::PathSegment {
#[must_use] #[must_use]
pub fn with_type_args(&self, type_args: ast::GenericArgList) -> ast::PathSegment { pub fn with_generic_args(&self, type_args: ast::GenericArgList) -> ast::PathSegment {
self._with_type_args(type_args, false) self._with_generic_args(type_args, false)
} }
#[must_use] #[must_use]
pub fn with_turbo_fish(&self, type_args: ast::GenericArgList) -> ast::PathSegment { pub fn with_turbo_fish(&self, type_args: ast::GenericArgList) -> ast::PathSegment {
self._with_type_args(type_args, true) self._with_generic_args(type_args, true)
} }
fn _with_type_args(&self, type_args: ast::GenericArgList, turbo: bool) -> ast::PathSegment { fn _with_generic_args(&self, type_args: ast::GenericArgList, turbo: bool) -> ast::PathSegment {
if let Some(old) = self.generic_arg_list() { if let Some(old) = self.generic_arg_list() {
return self.replace_children( return self.replace_children(
single_node(old.syntax().clone()), single_node(old.syntax().clone()),