fix: Fix proc-macro server crashing when parsing a non-lexable string into a TokenStream
This commit is contained in:
parent
3a14e301dd
commit
14ec1202e5
@ -142,7 +142,13 @@ fn is_empty(&mut self, stream: &Self::TokenStream) -> bool {
|
|||||||
stream.is_empty()
|
stream.is_empty()
|
||||||
}
|
}
|
||||||
fn from_str(&mut self, src: &str) -> Self::TokenStream {
|
fn from_str(&mut self, src: &str) -> Self::TokenStream {
|
||||||
Self::TokenStream::from_str(src, self.call_site).expect("cannot parse string")
|
Self::TokenStream::from_str(src, self.call_site).unwrap_or_else(|e| {
|
||||||
|
Self::TokenStream::from_str(
|
||||||
|
&format!("compile_error!(\"failed to parse str to token stream: {e}\")"),
|
||||||
|
self.call_site,
|
||||||
|
)
|
||||||
|
.unwrap()
|
||||||
|
})
|
||||||
}
|
}
|
||||||
fn to_string(&mut self, stream: &Self::TokenStream) -> String {
|
fn to_string(&mut self, stream: &Self::TokenStream) -> String {
|
||||||
stream.to_string()
|
stream.to_string()
|
||||||
|
@ -131,7 +131,13 @@ fn is_empty(&mut self, stream: &Self::TokenStream) -> bool {
|
|||||||
stream.is_empty()
|
stream.is_empty()
|
||||||
}
|
}
|
||||||
fn from_str(&mut self, src: &str) -> Self::TokenStream {
|
fn from_str(&mut self, src: &str) -> Self::TokenStream {
|
||||||
Self::TokenStream::from_str(src, self.call_site).expect("cannot parse string")
|
Self::TokenStream::from_str(src, self.call_site).unwrap_or_else(|e| {
|
||||||
|
Self::TokenStream::from_str(
|
||||||
|
&format!("compile_error!(\"failed to parse str to token stream: {e}\")"),
|
||||||
|
self.call_site,
|
||||||
|
)
|
||||||
|
.unwrap()
|
||||||
|
})
|
||||||
}
|
}
|
||||||
fn to_string(&mut self, stream: &Self::TokenStream) -> String {
|
fn to_string(&mut self, stream: &Self::TokenStream) -> String {
|
||||||
stream.to_string()
|
stream.to_string()
|
||||||
|
@ -131,7 +131,7 @@ pub(crate) fn from_str(src: &str, call_site: S) -> Result<TokenStream<S>, String
|
|||||||
call_site,
|
call_site,
|
||||||
src,
|
src,
|
||||||
)
|
)
|
||||||
.ok_or("lexing error")?;
|
.ok_or_else(|| format!("lexing error: {src}"))?;
|
||||||
|
|
||||||
Ok(TokenStream::with_subtree(subtree))
|
Ok(TokenStream::with_subtree(subtree))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user