remove unnecessary function

This commit is contained in:
Agustin Chiappe Berrini
2017-12-07 03:56:31 -05:00
parent ce1fed7f52
commit fb8ab18f50
+1 -5
View File
@@ -36,7 +36,7 @@ pub fn from_str(string: &str) -> Ident {
}
pub fn without_first_quote(&self) -> Ident {
Ident { name: self.name.without_first_quote(), ctxt: self.ctxt }
Ident { name: Symbol::from(self.name.as_str().trim_left_matches('\'')), ctxt: self.ctxt }
}
pub fn modern(self) -> Ident {
@@ -117,10 +117,6 @@ pub fn as_str(self) -> InternedString {
pub fn as_u32(self) -> u32 {
self.0
}
pub fn without_first_quote(&self) -> Symbol {
Symbol::from(self.as_str().trim_left_matches('\''))
}
}
impl<'a> From<&'a str> for Symbol {