lexical-lsp / lexical

Lexical is a next-generation elixir language server
782 stars 77 forks source link

Calling find references on a `defstruct` call finds defined structs #607

Closed scohen closed 4 months ago

scohen commented 4 months ago

When you call find references while hovering over defstruct calls, it finds references to the struct that the current module defines. Prior, it would result in no results because we don't index defstruct calls.

Fixes #570