You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Ident::new_raw method has been stable since rustc 1.47.0 (https://doc.rust-lang.org/nightly/proc_macro/struct.Ident.html#method.new_raw). The logic for pushing raw identifiers into a TokenStream still uses TokenStream::from_str however, and could be updated to call this new_raw on versions where it's available.
This requires the changes in
dtolnay/proc-macro2#331 which expose
Ident::new_raw from proc-macro2, along with providing a fallback for
earlier versions of Rust.
Fixesdtolnay#223
This requires the changes in
dtolnay/proc-macro2#331 which expose
Ident::new_raw from proc-macro2, along with providing a fallback for
earlier versions of Rust.
Fixesdtolnay#223
The
Ident::new_raw
method has been stable since rustc 1.47.0 (https://doc.rust-lang.org/nightly/proc_macro/struct.Ident.html#method.new_raw). The logic for pushing raw identifiers into aTokenStream
still usesTokenStream::from_str
however, and could be updated to call thisnew_raw
on versions where it's available.quote/src/runtime.rs
Lines 192 to 202 in 7d5d360
quote/src/runtime.rs
Lines 204 to 214 in 7d5d360
quote/src/runtime.rs
Lines 322 to 335 in 7d5d360
The text was updated successfully, but these errors were encountered: