Pure-D / serve-d

D LSP server (dlang language server protocol server)
MIT License
200 stars 48 forks source link

Support finding references for struct/class members #292

Open WebFreak001 opened 1 year ago

WebFreak001 commented 1 year ago

Probably needs #291 to be really usable

e.g.

struct Foo
{
    int x; // search for references of this `x`
}

Foo foo()
{
}

void main()
{
    auto v = foo();
    writeln(v.x); // find this x
}