-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
add test to reproduce #137687 and fix it by converting #[crate_name]
to a new-style attribute parser
#137729
base: master
Are you sure you want to change the base?
Conversation
This comment has been minimized.
This comment has been minimized.
04bafec
to
3898182
Compare
This comment has been minimized.
This comment has been minimized.
3898182
to
81fc9d1
Compare
4e90cee
to
21838d5
Compare
21838d5
to
d1ee9c4
Compare
name: Symbol, | ||
name_span: Span, |
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.
This could theoretically use Spanned
but it doesn't necessarily lead to more readable code (and I don't remember if it's compatible with translatable diagnostics).
name: Symbol, | |
name_span: Span, | |
name: Symbol, | |
name_span: Span, |
pub(crate) struct CratenameParser; | ||
|
||
impl SingleAttributeParser for CratenameParser { | ||
const PATH: &'static [Symbol] = &[sym::crate_name]; |
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.
FYI: You generally no longer need to explicitly state 'static
in the ty of assoc consts.
|
||
fn on_duplicate(cx: &AcceptContext<'_>, first_span: Span) { | ||
// FIXME(jdonszelmann): better duplicate reporting (WIP) | ||
cx.emit_err(UnusedMultiple { |
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.
Duplicates are warnings on master, right? So this is a breaking change?
@fmease and I decided to delay this PR for a bit until more diagnostic infra for attrs lands (hopefully next week) to make the duplicate error a warning to be consistent with current master. |
r=fmease,bjorn3 once that PR lands and you can downgrade the error to a lint warning again. @bors delegate+ |
✌️ @jdonszelmann, you can now approve this pull request! If @fmease told you to " |
☔ The latest upstream changes (presumably #138416) made this pull request unmergeable. Please resolve the merge conflicts. |
r? @fmease
Closes #137687