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

CallHierarchy support #29

Open
leaxoy opened this issue Dec 16, 2022 · 3 comments
Open

CallHierarchy support #29

leaxoy opened this issue Dec 16, 2022 · 3 comments

Comments

@leaxoy
Copy link

leaxoy commented Dec 16, 2022

Code is

public class Main {
    public static void main(String[] args) {
        System.out.println("Hello, world");
    }

    void a() {
        b();
        c();
    }

    void b() {
        c();
    }

    void c() {
        d();
    }

    void d() {
    }
}

Incoming Calls
image

Outgoing Calls
image

@leaxoy
Copy link
Author

leaxoy commented Feb 10, 2023

Closed due to no response.

@leaxoy leaxoy closed this as completed Feb 10, 2023
@DNLHC
Copy link
Owner

DNLHC commented Feb 10, 2023

Hey, sorry for the late reply!
Call hierarchy will be supported, it's not a simple task because Glance wasn't designed to display nested folded groups in the list, but will be in the future.

@weilbith
Copy link

weilbith commented Oct 6, 2023

This will be so damn cool!!! 🥳
Any way to help with this?

Maybe this would then also work for type hierarchy stuff. 🤔

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

No branches or pull requests

3 participants