mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 21:15:18 +03:00
remove unnecessary function
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user