-
Notifications
You must be signed in to change notification settings - Fork 382
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
browsing graph of traits/structs/impls? #1545
Comments
Yeah, something like this would be super useful! We already have a way to list all the impls of a trait: This is handled by The next step is to add a similar marker to find all impls of a struct.
To implement this, we should add filtering by usage type to our "Find usages". |
As for the general graph thing, this is handled by "Class hierarchy" infrastructure, but I think that gutter icons and filters in find usages are more high yield things to add right now. |
thanks, thats quite useful already; I suppose another 'stopgap' might be to open things in the generated 'rustdoc' pages (which already has this 'graph' built, but it wont have as much context information at hand ) When writing rust in emacs I have a key setup which basically does a recursive grep for |
Hm, this sounds like Go to definition, which is Ctrl+B by default. |
sure I use the 'goto definition', it's very useful; sometimes the 'grep' also yields useful information , e.g. a function having multiple implementations, or indeed finding the references to types in the 'impl..for' lines . Obviously it can't filter or use context as well as an IDE. It can't find enum variants or fields. anyway thats just a tangent. ( I should look around more generally for this .. dedicated rust-aware solutions are far better)
|
Thanks for the clarification! I think you actually want Find Usages (Alt+F7) with filtering by type of the usage, which unfortunately is not implemented yet :( |
ok thats pretty good, and does of course find 'impls' (usages of a trait or type..) so it also does quite a bit of the original request. Seems thats better than the ad-hoc grep solution already. |
I will extend Find Usages. |
This can be implemented via this API, if anyone is interested. Although I'm not sure if it's worth it for Rust. It doesn't have struct inheritance, so type hierarchy can pretty much only consists of traits. Method overrides are also only one level deep. Maybe function call hierarchy can be useful, but I have personally never used it. |
Would there be any place in this IDE that could easily browse the graph of structs/traits/impls, -perhaps an enhancement of the structure window, (EDIT apparently this could go in the class hierarchy browser?)
Ideally this should be able to navigate globally, not just 'from the current file', showing the open graph-like relationship between the entities (contrasting with the inheritance hierarchy of traditional OOP)
When focussed on a trait: show all types that impl it,
When focussed on a type, show all traits that it impls's
It might also be handy to list all project wide functions that use a type, although this would get out of hand for universal types like 'Option', so there would be a need to sort by relevance (distance in module graph?) and apply a cutoff (perhaps collapsing excessive cases to 'related modules' would help)
The standard view of a 'file' would be a focus on a module
Whilst the overall IDE may be patterned around class based OOP, perhaps there is some correspondence elsewhere e.g. 'interfaces' (java classes can implement any number of interfaces in addition to inheriting?)
The text was updated successfully, but these errors were encountered: