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

Handling namespaces separated in full qualified names #649

Open
schaumb opened this issue Oct 15, 2023 · 0 comments
Open

Handling namespaces separated in full qualified names #649

schaumb opened this issue Oct 15, 2023 · 0 comments
Labels
Kind: Enhancement 🌟 Level: Intermediate (3) Plugin: C++ Issues related to the parsing and presentation of C++ projects.

Comments

@schaumb
Copy link
Collaborator

schaumb commented Oct 15, 2023

The types/statements are handled together with their namespaces. It would be handy if the user could go to the namespace definitions/declarations, and it can be seen where are used the namespaces.

namespace A { // here it can be shown a list with the main function first line because there is a usage
  void b() {}
}

int main() {
 A::b();
 // [A]::[b()];
 // [A] connected to the namespace
 // [b()] connected to the function declaration
}
using Namespace1::Namespace2::function;
// using [Namespace1]::[Namespace2]::[function];
@mcserep mcserep added Kind: Enhancement 🌟 Plugin: C++ Issues related to the parsing and presentation of C++ projects. labels Oct 18, 2023
@mcserep mcserep added this to To do in Roadmap via automation Oct 18, 2023
@mcserep mcserep added this to To do in Lab via automation Oct 18, 2023
@mcserep mcserep changed the title C++: Handling namespaces separated in full qualified names Handling namespaces separated in full qualified names Oct 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Kind: Enhancement 🌟 Level: Intermediate (3) Plugin: C++ Issues related to the parsing and presentation of C++ projects.
Projects
Lab
To do
Roadmap
To do
Development

No branches or pull requests

2 participants