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
Currently we had to dump syn::parse::token_trees since it's too slow. (It took 20 seconds to parse the symbols.rs benchmark). We use custom parsing right now, separating identifies by @ and ?, but this is not hygienic and could fail with something like:
let map:Map<A,B> = static_map!{Default: 0u32,
"This @ is ? bad" => 0u32,
}
The text was updated successfully, but these errors were encountered:
Currently we had to dump
syn::parse::token_trees
since it's too slow. (It took 20 seconds to parse thesymbols.rs
benchmark). We use custom parsing right now, separating identifies by@
and?
, but this is not hygienic and could fail with something like:The text was updated successfully, but these errors were encountered: