serve-d icon indicating copy to clipboard operation
serve-d copied to clipboard

Support finding usage of types

Open WebFreak001 opened this issue 1 year ago • 0 comments

This probably improves massively in quality when #293 is implemented

should find all variable assignments, possibly also of type auto, e.g.

struct Foo // search for usage of `Foo`
{
}

//  v this should of course also be included
Foo foo()
{
}

void main()
{
    auto v = foo();
    //   ^ this is interesting
}

This can be used to enhance the accuracy of find references and implement finding members of structs and classes accurately.

WebFreak001 avatar Jan 15 '23 23:01 WebFreak001