Skip to content
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 no_default_methods attribute and the associated lint #16051

Closed
wants to merge 2 commits into from

Conversation

sanxiyn
Copy link
Member

@sanxiyn sanxiyn commented Jul 28, 2014

Fix #14220.

impl_methods.iter().map(|m| { m.pe_ident().name }).collect();
if !trait_set.is_subset(&impl_set) {
cx.span_lint(MISSING_OVERRIDE, attr.span,
"some default methods are not overridden");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should mention the names of the missing methods somewhere.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed. Either in this message, or in an associated note.

@sanxiyn
Copy link
Member Author

sanxiyn commented Jul 29, 2014

Updated.

@alexcrichton
Copy link
Member

As the compiler starts to grow more and more lints, this may be a lint which is niche enough to live outside the compiler now. Any thoughts on this @pnkfelix?

@pnkfelix
Copy link
Member

@alexcrichton does the fact that it needs an associated attribute a motivation for still coupling it to rustc? Or can one sanely put associated attributes into a plugin (and extend the attribute white list when loading a plugin?)

@sfackler
Copy link
Member

The lint + attribute should work fine as a plugin.

@pnkfelix
Copy link
Member

I would be fine with this living in the rustc code base itself (i.e. it seems like a relatively simple lint to support). But I also am sympathetic to wanting it to live outside the code base.

@alexcrichton do we have a standard recipe for serving up plugins that live outside the compiler and making them discoverable? Or is that gated on some larger piece of infrastructure that still remains to be written?

If we can host it elsewhere today, then that's fine; but I wouldn't want to gate this feature today on that infrastructure, especially since we can factor it out and move it elsewhere later if need be.

@huonw
Copy link
Member

huonw commented Aug 20, 2014

I would be fine with this living in the rustc code base itself (i.e. it seems like a relatively simple lint to support).

It seems like something useful for the compiler itself too? E.g. enforcing that certain Visitor or Fold implementations are complete.

@alexcrichton
Copy link
Member

do we have a standard recipe for serving up plugins that live outside the compiler and making them discoverable?

We do indeed! Cargo has first-class support for plugins, and discoverability will happen when we create a registry.

While useful for the compiler, this is something that we'll have to maintain until the end of time if it's added to the standard distribution and it's unclear how useful this will be on a general basis.

@pnkfelix
Copy link
Member

@alexcrichton Since we do not yet have discoverability, Is there already an example rustc plugin out there that you could provide as a reference? If you point me at it, then I could take a shot of rehosting this PR in that fashion instead.

@sfackler
Copy link
Member

@pnkfelix here's an example that I think is up to date: https://github.com/huonw/spellck#spellck

@alexcrichton
Copy link
Member

Closing due to inactivity, but feel free to reopen with a rebase!

lnicola pushed a commit to lnicola/rust that referenced this pull request Apr 20, 2024
…ks, r=Veykril

fix: support auto-closing for triple backticks

It might fix rust-lang#16051, see rust-lang/rust-analyzer#16051 (comment)
lnicola pushed a commit to lnicola/rust that referenced this pull request Apr 20, 2024
…ks, r=Veykril

fix: support auto-closing for triple backticks

It might fix rust-lang#16051, see rust-lang/rust-analyzer#16051 (comment)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

add attribute on impl and associated lint for "no default methods"
6 participants