DanielGavin / ols

Language server for Odin
MIT License
375 stars 56 forks source link

Cannot use "go to definition" on implicit enum member selector #375

Open thetarnav opened 2 months ago

thetarnav commented 2 months ago
Enum :: enum {
    Foo,
}

value := Enum.Foo   // can go to definition from .Foo
value: Enum = .Foo  // can't go to definition from .Foo
DanielGavin commented 3 weeks ago

Is a necessary fix to support renaming and references aswell. It's not fully a bug, since it was never implemented.

DanielGavin commented 3 weeks ago

Supported on the rename branch. Issue will be closed when it's merged to master.