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
As pointed out in rust-lang/rust#49219 (comment), we're likely not seeing much action involving the real proc_macro bundled with the compiler, because proc-macro2, by default, shims all the APIs, and interacts with the real proc_macro through Strings (which was the only stabilized API for a while).
Any perf changes, in the implementation of the extended proc_macro APIs, may go by unnoticed.
As pointed out in rust-lang/rust#49219 (comment), we're likely not seeing much action involving the real
proc_macro
bundled with the compiler, becauseproc-macro2
, by default, shims all the APIs, and interacts with the realproc_macro
throughString
s (which was the only stabilized API for a while).Any perf changes, in the implementation of the extended
proc_macro
APIs, may go by unnoticed.cc @Mark-Simulacrum @nnethercote
The text was updated successfully, but these errors were encountered: