implement Literal::from_str

This commit is contained in:
Anatol Ulrich 2021-11-02 21:42:17 +01:00
parent a3830dfd3b
commit a6df2b16df
2 changed files with 4 additions and 4 deletions

View File

@ -488,8 +488,8 @@ fn debug_kind(&mut self, _literal: &Self::Literal) -> String {
// They must still be present to be ABI-compatible and work with upstream proc_macro. // They must still be present to be ABI-compatible and work with upstream proc_macro.
"".to_owned() "".to_owned()
} }
fn from_str(&mut self, _s: &str) -> Result<Self::Literal, ()> { fn from_str(&mut self, s: &str) -> Result<Self::Literal, ()> {
unimplemented!() Ok(Literal { text: s.into(), id: tt::TokenId::unspecified() })
} }
fn symbol(&mut self, literal: &Self::Literal) -> String { fn symbol(&mut self, literal: &Self::Literal) -> String {
literal.text.to_string() literal.text.to_string()

View File

@ -489,8 +489,8 @@ fn debug_kind(&mut self, _literal: &Self::Literal) -> String {
// They must still be present to be ABI-compatible and work with upstream proc_macro. // They must still be present to be ABI-compatible and work with upstream proc_macro.
"".to_owned() "".to_owned()
} }
fn from_str(&mut self, _s: &str) -> Result<Self::Literal, ()> { fn from_str(&mut self, s: &str) -> Result<Self::Literal, ()> {
unimplemented!() Ok(Literal { text: s.into(), id: tt::TokenId::unspecified() })
} }
fn symbol(&mut self, literal: &Self::Literal) -> String { fn symbol(&mut self, literal: &Self::Literal) -> String {
literal.text.to_string() literal.text.to_string()