We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed that the syntax of mangled names specified in RFC 2603 is outdated. Specifically, it does not match the implementation of https://github.com/alexcrichton/rustc-demangle/.
Here are some differences I have observed from rustc-demangle:
<binder>
<fn-sig>
<dyn-bounds>
<const-data>
"n"
<const>
<type>
Also, the symbol after <fn-sig> is := while the symbol after other non-terminals are =.
:=
=
The text was updated successfully, but these errors were encountered:
Thanks for the bug report, @EFanZh!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I noticed that the syntax of mangled names specified in RFC 2603 is outdated. Specifically, it does not match the implementation of https://github.com/alexcrichton/rustc-demangle/.
Here are some differences I have observed from rustc-demangle:
<binder>
is optional in<fn-sig>
and<dyn-bounds>
;<const-data>
may contain an optional"n"
character to indicate negative values.<const>
does not contain a<type>
item.Also, the symbol after
<fn-sig>
is:=
while the symbol after other non-terminals are=
.The text was updated successfully, but these errors were encountered: