-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Include type name in symbol for methods #30328
New issue
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
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
⌛ Testing commit 8740575 with merge 9144a9c... |
💔 Test failed - auto-mac-64-opt |
@bors retry |
⌛ Testing commit 8740575 with merge 26eb62f... |
💔 Test failed - auto-mac-64-nopt-t |
@bors retry |
Nice! 🎈 |
Impl => { | ||
InternedString::new("<impl>") | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was hoping this could be combined with the actual type info to produce the full name.
Right now, the ast::Item
name for impls is a hacky composition of the pretty-printed AST type and trait and I wish we could get rid of it.
Fix #30260.